mirror of
https://github.com/Fishwaldo/mouthpiece.git
synced 2025-03-15 19:41:22 +00:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
publicPath: '/static',
|
|
devServer: {
|
|
allowedHosts: "all",
|
|
port: 8888,
|
|
proxy: {
|
|
'^/api': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
}
|
|
})
|