Vue.js exclude settings file from being bundled
问题 I am using the vue-webpack template and I have created a settings.json file to store environment variables that should be changed when installing the script. My settings.json (just store the absolute path to the API server): { "apiURL": "//localhost/app/server/API" } How can I keep the file from being minified/bundled in the production version such that I can change it and the updated file will be used next time the app is accessed (without having to build it again) ? In my app I use this