Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/client/vue.config.js
Miroslav Šedivý dfe8b8b57d npm lint.
2023-01-29 20:31:00 +01:00

28 lines
476 B
JavaScript

const path = require('path')
module.exports = {
productionSourceMap: false,
css: {
loaderOptions: {
sass: {
additionalData: `
@import "@/assets/styles/_variables.scss";
`,
},
},
},
publicPath: './',
assetsDir: './',
configureWebpack: {
resolve: {
alias: {
vue$: 'vue/dist/vue.esm.js',
'~': path.resolve(__dirname, 'src/'),
},
},
},
devServer: {
allowedHosts: 'all',
},
}