1234567891011121314151617181920212223242526272829 |
- 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://coldlogistics.coldbaozhida.com/Cold_Logistic',
- // target: 'http://coldlogisticstest.coldbaozhida.com/Cold_Logistic', //测试
- ws: false,
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- }
- }
- }
- })
|