1234567891011121314151617 |
- const { defineConfig } = require("@vue/cli-service");
- module.exports = defineConfig({
- transpileDependencies: true,
- devServer: {
- proxy: {
- "/api": {
- target: "http://localhost:3000",
- secure: false,
- changeOrigin: true,
- /*pathRewrite:{
- "^/api":""
- }*/
- },
- },
- port: 8080,
- },
- });
|