const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer: { port: 8080, open: true, // ๅๅ‘ไปฃ็†5001 proxy: { '/api': { target: 'http://localhost:5003', changeOrigin: true, secure: false } } } })