Remove hashes from filenames for now

This commit is contained in:
Alex Gleason
2020-03-27 22:13:36 -05:00
parent 882b302408
commit 346bfd5d8d
4 changed files with 24 additions and 28 deletions

View File

@ -1,6 +1,6 @@
// Note: You must restart bin/webpack-dev-server for changes to take effect
const { resolve } = require('path');
const { resolve, join } = require('path');
const merge = require('webpack-merge');
const sharedConfig = require('./shared');
const { settings, output } = require('./configuration');
@ -60,11 +60,4 @@ module.exports = merge(sharedConfig, {
),
serveIndex: true,
},
plugins: [
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
inject: true
})
],
});