-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Description
Version
3.0.0-rc.3
Steps to reproduce
Have tried below two options as suggested in docs... but doesn't seem to work
//vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].hash = false;
return args
})
}
}
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => [{
hash: false
}])
}
}
What is expected?
Was expecting output file name to be just app.css instead of app.########.css
What is actually happening?
I am getting app.########.css
Metadata
Metadata
Assignees
Labels
No labels