1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 09:32:50 +00:00

cache busting - minor audio file fix

This commit is contained in:
2017-02-05 07:29:15 +00:00
parent d62370eb77
commit 043a82d3df
19 changed files with 66877 additions and 20 deletions

View File

@@ -10,7 +10,7 @@ module.exports = {
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '/static/[name].js'
filename: '/static/[name].[hash].js'
},
module: {
rules: [{
@@ -47,7 +47,7 @@ module.exports = {
},
plugins: [
new ExtractTextPlugin({
filename: '/static/[name].css',
filename: '/static/[name].[hash].css',
disable: false,
allChunks: true
}),