12345678910111213141516171819202122 |
- module.exports = {
- devServer: {
- host: '0.0.0.0',
- port: 8081,
- open: true,
- proxy: {
- [process.env.VUE_APP_BASE_API]: {
- target: `http://localhost:8080`,
- changeOrigin: true,
- pathRewrite: {
- ['^' + process.env.VUE_APP_BASE_API]: ''
- }
- }
- },
- // 移除 disableHostCheck 选项
- // 如果需要允许所有主机访问,可以使用 allowedHosts: 'all'
- allowedHosts: 'all'
- },
- transpileDependencies: true,
- }
|