Home

Issue: 349

webpack proxy not work

[issue link]
build: {
    extend (config, ctx) {
      if (!ctx.isClient) {
        config.devServer = {
          proxy: {
             '/api/*': {
              target: 'http://127.0.0.1:8080/',
              secure: false
             }
          }
        }
       } 
    }
  }
This question is available on Nuxt.js community (#c305)