| 1234567891011121314151617181920 |
- // vue.config.js
- /**
- * @type {import('@vue/cli-service').ProjectOptions}
- */
- module.exports = {
- // 选项...
- devServer: {
- proxy: {
- "/api": {
- target: "https://bok.seec.seecoder.cn",
- // target: "http://localhost:8080",
- ws: true,
- changeOrigin: true
- }
- },
- port: 8000,
- },
- lintOnSave:false,
- }
|