[Vuejs]-Nginx proxy_pass cannot load asset VueJS

0👍

In your new and old applications hosted at 8081 and 8082 respectively, add assetsDir in your configuration.

vue.config.js:

module.exports = {
  assetsDir: 'new'
}

Leave a comment