You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
424 B
13 lines
424 B
3 years ago
|
// this file is for cases where we need to access the
|
||
|
// webpack config as a file when using CLI commands.
|
||
|
|
||
|
let service = process.VUE_CLI_SERVICE
|
||
|
|
||
|
if (!service || process.env.VUE_CLI_API_MODE) {
|
||
|
const Service = require('./lib/Service')
|
||
|
service = new Service(process.env.VUE_CLI_CONTEXT || process.cwd())
|
||
|
service.init(process.env.VUE_CLI_MODE || process.env.NODE_ENV)
|
||
|
}
|
||
|
|
||
|
module.exports = service.resolveWebpackConfig()
|