The next step is to create a Vue configuration file, vue.config.js. Perform the following steps to do so:
According to the official documentation (
https://cli.vuejs.org/config/#vue-config-js),
vue.config.js is an optional config file that will be automatically loaded by
@vue/cli-service if it's present in your project root (next to
package.json). You can also use the
vue field in
package.json, but note that you will be limited to JSON-compatible values only.
- Let's start with the basic configuration stub, as shown in the following code:
// vue.config.jsmodule.exports = { // options...}