vue.config.js 394 B

12345678910111213141516171819
  1. module.exports = {
  2. publicPath: "./",
  3. devServer: {
  4. headers: {
  5. "Cache-Control": "no-store",
  6. },
  7. https: false,
  8. proxy: {
  9. // "ingest": {
  10. // target: process.env.VUE_APP_API_URL_PREFIX,
  11. // changeOrigin: true,
  12. // },
  13. "/location": {
  14. target: process.env.VUE_APP_API_URL_PREFIX,
  15. changeOrigin: true,
  16. },
  17. },
  18. },
  19. };