Working on making floor texture look more realistic

This commit is contained in:
Frank Delaguila
2022-03-13 19:48:00 -06:00
parent 8845c79c35
commit 2667a4e544
9 changed files with 69 additions and 78 deletions

View File

@@ -13,13 +13,14 @@ const compiler = webpack(config);
app.use(
webpackDevMiddleware(compiler, {
publicPath: config.output.publicPath,
writeToDisk: true,
writeToDisk: true
})
);
app.use( webpackHotMiddleware(compiler, {
noInfo: true,
quiet: true
quiet: true,
contentBase: '/dist'
}) );
app.get( '/*', function(req, res) {