Files
pickling-mes/frontend/vue.config.js

16 lines
288 B
JavaScript
Raw Normal View History

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
lintOnSave: false,
transpileDependencies: true,
devServer: {
port: 8080,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
}
}
}
})