outputDir
assetsDir
indexPath
必須填
module.exports = { publicPath: process.env.NODE_ENV === 'production' ? './' : '/', outputDir: "dist", assetsDir:"static", indexPath:'index.html', devServer: { overlay: { warnings: false, errors: false }, // 設置主機地址 host: 'localhost', // 設置默認端口 port: 8080, // 設置代理 proxy: { '/api': { // 目標 API 地址 target: 'http://192.168.124.231:8707/', // 接口的域名 // 如果要代理 websockets ws: false, // 將主機標頭的原點更改為目標URL changeOrigin: true } } } }