12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
const { defineConfig } = require('@vue/cli-service');
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:5500",
|
|
}
|
|
}
|
|
}
|
|
})
|