| | |
| | | port: 5036, |
| | | host: true, |
| | | open: true, |
| | | proxy: { |
| | | // https://cn.vitejs.dev/config/#server-proxy |
| | | '/dev-api': { |
| | | target: 'http://localhost:8080', |
| | | changeOrigin: true, |
| | | rewrite: (p) => p.replace(/^\/dev-api/, '') |
| | | } |
| | | } |
| | | // proxy: { |
| | | // '/api': { |
| | | // target: 'http://192.168.0.200:8036', |
| | | // changeOrigin: true, |
| | | // rewrite: (p) => p.replace(/^\/api/, '') |
| | | // } |
| | | // } |
| | | }, |
| | | //fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file |
| | | css: { |
| | | postcss: { |
| | | plugins: [ |
| | | { |
| | | postcssPlugin: 'internal:charset-removal', |
| | | AtRule: { |
| | | charset: (atRule) => { |
| | | if (atRule.name === 'charset') { |
| | | atRule.remove(); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | ] |
| | | } |
| | | preprocessorOptions: { |
| | | css: { charset: false }, |
| | | scss: { |
| | | api: 'modern-compiler', |
| | | }, |
| | | }, |
| | | } |
| | | } |
| | | }) |