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

@@ -19,6 +19,22 @@ module.exports = {
"querystring": require.resolve("querystring-es3")
}
},
output: {
filename: 'js/[name].[contenthash].js',
path: path.join(__dirname, 'dist'),
publicPath: '/',
clean: true
},
devServer: {
static: {
directory: path.join(__dirname, 'dist'),
},
devMiddleware: {
writeToDisk: true
},
port: 3000,
open: true
},
module: {
rules: [
// HTML
@@ -62,9 +78,6 @@ module.exports = {
{
test: /\.(png|svg|jpg|jpeg|gif|mp4)$/i,
type: 'asset/resource',
generator: {
filename: 'assets/[name].[ext]'
},
},
// {