12345678910111213141516171819202122 |
- module.exports = {
- outputDir: 'static',
- css: {
- loaderOptions: {
- sass: {
- data: `@import "@/sass/_variables.scss";`
- }
- }
- },
- productionSourceMap:false,
- runtimeCompiler: true,
- devServer: {
- proxy: {
- '/': {
- target: 'http://119.23.22.31:32002',
- autoRewrite: true,
- ws: false
- }
- },
- port: 3000
- }
- }
|