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