123456789101112131415 |
- module.exports = {
- "transpileDependencies": [
- "vuetify"
- ],
- devServer: {
- port: 3200,
- proxy: {
- '/api': {// 匹配所有以 '/api1'开头的请求路径
- target: 'http://localhost:8090',// 代理目标的基础路径
- changeOrigin: true,
- // pathRewrite: {'^/api1': ''}
- },
- }
- }
- }
|