添加根目錄文件:vue.config.jsvue
添加配置以下:npm
module.exports = { baseUrl: process.env.NODE_ENV === 'production' ? '/online/' : '/', // outputDir: 在npm run build時 生成文件的目錄 type:string, default:'dist' // outputDir: 'dist', // pages:{ type:Object,Default:undfind } devServer: { port: 80, // 端口號 host: 'localhost', https: false, // https:{type:Boolean} open: true, proxy: { '/api': { target: 'http://localhost', changeOrigin: true, pathRewrite: { '^/api': '/mock' } } } }// 配置多個代理 }