mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
fix: temporary disable build.config hydration
This commit is contained in:
parent
cc74126fa6
commit
4f55aadd1e
@ -36,11 +36,13 @@ Options.from = function (_options) {
|
||||
options.rootDir = hasValue(options.rootDir) ? options.rootDir : process.cwd()
|
||||
|
||||
// Apply defaults by ${buildDir}/dist/build.config.js
|
||||
const buildDir = options.buildDir || Options.defaults.buildDir
|
||||
const buildConfig = resolve(options.rootDir, buildDir, 'build.config.js')
|
||||
if (existsSync(buildConfig)) {
|
||||
_.defaultsDeep(options, require(buildConfig))
|
||||
}
|
||||
// TODO: Unsafe operation.
|
||||
// const buildDir = options.buildDir || Options.defaults.buildDir
|
||||
// const buildConfig = resolve(options.rootDir, buildDir, 'build.config.js')
|
||||
// if (existsSync(buildConfig)) {
|
||||
// _.defaultsDeep(options, require(buildConfig))
|
||||
// }
|
||||
|
||||
// Apply defaults
|
||||
_.defaultsDeep(options, Options.defaults)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user