first commit

This commit is contained in:
Yu Sung
2023-08-23 00:02:18 +09:00
commit 6978618e72
25 changed files with 29929 additions and 0 deletions

13
vue.config.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
transpileDependencies: [
'vuetify'
],
//adding extract css true solves this issue
css: {
extract: true
},
configureWebpack: config => {
config.output.filename = 'js/[name].[hash].js'
config.output.chunkFilename = 'js/[name].[hash].js'
}
}