123456789101112131415161718192021222324252627 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
-
-
- publicPath: './',
-
- outputDir: 'dist',
-
- lintOnSave: false,
-
- devServer: {
- port: 8087,
- open: false,
- proxy: {
- '/api': {
- target: 'http://localhost:5239/api',
-
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- },
- }
- },
-
- })
|