filegator/vue.config.js

12 lines
186 B
JavaScript
Raw Normal View History

2019-06-13 18:52:40 +02:00
module.exports = {
indexPath: 'main.html',
filenameHashing: false,
configureWebpack: config => {
config.entry = {
app: [
'./frontend/main.js'
]
}
}
}