[Vuejs]-Vue.cli modify webpack to NOT embed json file during build?

0πŸ‘

βœ…

In your Webpack config, add the file as an external dependency:

module.exports = {
  externals: {
    myDataFileVariable: './assets/data.json'
  }
}

Leave a comment