mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
74 lines
1.8 KiB
JavaScript
74 lines
1.8 KiB
JavaScript
|
|
const { resolve } = require('path')
|
|
const { existsSync } = require('fs')
|
|
const consola = require('consola')
|
|
const esm = require('esm')(module, {
|
|
cache: false,
|
|
cjs: {
|
|
cache: true,
|
|
vars: true,
|
|
namedExports: true
|
|
}
|
|
})
|
|
|
|
const getRootDir = argv => resolve(process.env.NUXT_ROOT_DIR || argv._[0] || '.')
|
|
const getNuxtConfigFile = argv => resolve(getRootDir(argv), argv['config-file'])
|
|
|
|
exports.nuxtConfigFile = getNuxtConfigFile
|
|
|
|
exports.loadNuxtConfig = (argv) => {
|
|
const rootDir = getRootDir(argv)
|
|
const nuxtConfigFile = getNuxtConfigFile(argv)
|
|
|
|
let options = {}
|
|
|
|
if (existsSync(nuxtConfigFile)) {
|
|
delete require.cache[nuxtConfigFile]
|
|
options = esm(nuxtConfigFile)
|
|
if (!options) {
|
|
options = {}
|
|
}
|
|
if (options.default) {
|
|
options = options.default
|
|
}
|
|
} else if (argv['config-file'] !== 'nuxt.config.js') {
|
|
consola.fatal('Could not load config file: ' + argv['config-file'])
|
|
}
|
|
|
|
if (typeof options.rootDir !== 'string') {
|
|
options.rootDir = rootDir
|
|
}
|
|
|
|
// Nuxt Mode
|
|
options.mode =
|
|
(argv.spa && 'spa') || (argv.universal && 'universal') || options.mode
|
|
|
|
// Server options
|
|
if (!options.server) {
|
|
options.server = {}
|
|
}
|
|
options.server.port = argv.port || options.server.port
|
|
options.server.host = argv.hostname || options.server.host
|
|
|
|
return options
|
|
}
|
|
|
|
exports.getLatestHost = (argv) => {
|
|
const port =
|
|
argv.port ||
|
|
process.env.NUXT_PORT ||
|
|
process.env.PORT ||
|
|
process.env.npm_package_config_nuxt_port
|
|
const host =
|
|
argv.hostname ||
|
|
process.env.NUXT_HOST ||
|
|
process.env.HOST ||
|
|
process.env.npm_package_config_nuxt_host
|
|
const socket =
|
|
argv['unix-socket'] ||
|
|
process.env.UNIX_SOCKET ||
|
|
process.env.npm_package_config_unix_socket
|
|
|
|
return { port, host, socket }
|
|
}
|