vue.config.js 275 B

12345678910111213141516171819
  1. module.exports = {
  2. "transpileDependencies": [
  3. "vuetify"
  4. ],
  5. devServer: {
  6. proxy: {
  7. '/api': {
  8. target:'http://localhost:8088',
  9. changeOrigin:true,
  10. pathRewrite:{
  11. '^/api': ''
  12. }
  13. }
  14. },
  15. },
  16. publicPath: './'
  17. }