mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
41 lines
894 B
JavaScript
41 lines
894 B
JavaScript
import { loadNuxtConfig } from '@nuxt/config'
|
|
import Nuxt from './nuxt'
|
|
|
|
const OVERRIDES = {
|
|
dry: { dev: false, server: false },
|
|
dev: { dev: true, _build: true },
|
|
build: { dev: false, server: false, _build: true },
|
|
start: { dev: false, _start: true }
|
|
}
|
|
|
|
export async function loadNuxt (loadOptions) {
|
|
// Normalize loadOptions
|
|
if (typeof loadOptions === 'string') {
|
|
loadOptions = { for: loadOptions }
|
|
}
|
|
const { ready = true } = loadOptions
|
|
const _for = loadOptions.for || 'dry'
|
|
|
|
// Get overrides
|
|
const override = OVERRIDES[_for]
|
|
|
|
// Unsupported purpose
|
|
if (!override) {
|
|
throw new Error('Unsupported for: ' + _for)
|
|
}
|
|
|
|
// Load Config
|
|
const config = await loadNuxtConfig(loadOptions)
|
|
|
|
// Apply config overrides
|
|
Object.assign(config, override)
|
|
|
|
// Initiate Nuxt
|
|
const nuxt = new Nuxt(config)
|
|
if (ready) {
|
|
await nuxt.ready()
|
|
}
|
|
|
|
return nuxt
|
|
}
|