vue.config.js 335 B

12345678910111213141516
  1. module.exports = {
  2. publicPath: `/${process.env.VUE_APP_BASE_URL}`,
  3. devServer: {
  4. port: '8001',
  5. proxy: {
  6. '/files': {
  7. target: 'http://broadcast.waityou24.cn',
  8. },
  9. '/freeAdmin/api/user': {
  10. target: 'http://127.0.0.1:13001',
  11. changeOrigin: true,
  12. ws: false,
  13. },
  14. },
  15. },
  16. };