I"m taking over a Vue.js project, just at the front end, but there is a folder config
with the following files:
excuse me, can these three configuration files be deleted? Looks like it has something to do with node.js.
dev.env.js:
"use strict"
const merge = require("webpack-merge")
const prodEnv = require("./prod.env")
module.exports = merge(prodEnv, {
NODE_ENV: ""development"",
})
prod.env.js:
"use strict"
const MODEL = require("../static/config.js")
const pro= {
NODE_ENV: ""production""
}
module.exports =Object.assign({}, pro,MODEL)
will webpack initialize Vue projects create them automatically?