123456789101112131415161718192021222324252627282930 |
- const {
- defineConfig
- } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- lintOnSave: false,
- //如果是hash模式, publicPath:"";如果是history, publicPath:"/"
- publicPath: "/",
- //打包的文件夹目录
- outputDir: "dist",
- // 打包之后的入口文件
- indexPath: "index.html",
- //静态资源目录
- assetsDir: "assets",
- //配置代理
- devServer: {
- proxy: {
- '/api': {
- // target: 'https://colddelivery.coldbaozhida.com/cold_delivery',
- target: 'http://182.43.247.65:6280', //测试
- // target: 'http://192.168.11.15:6280', //本地
- ws: false,
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- }
- }
- }
- })
|