mirror of
https://github.com/m1k1o/neko.git
synced 2025-06-02 02:42:47 +02:00
inital commit.
This commit is contained in:
commit
fa28f2c6ee
12 changed files with 15312 additions and 0 deletions
25
vue.config.js
Normal file
25
vue.config.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
const path = require('path')
|
||||
|
||||
module.exports = {
|
||||
productionSourceMap: false,
|
||||
css: {
|
||||
loaderOptions: {
|
||||
sass: {
|
||||
prependData: `
|
||||
@import "@/assets/styles/_variables.scss";
|
||||
`,
|
||||
},
|
||||
},
|
||||
},
|
||||
configureWebpack: {
|
||||
resolve: {
|
||||
alias: {
|
||||
vue$: 'vue/dist/vue.esm.js',
|
||||
'~': path.resolve(__dirname, 'src/'),
|
||||
},
|
||||
},
|
||||
},
|
||||
devServer: {
|
||||
disableHostCheck: true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue