mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 06:05:11 +00:00
27 lines
697 B
JavaScript
Executable File
27 lines
697 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const fs = require('fs')
|
|
const Nuxt = require('../')
|
|
const Server = require('../lib/server')
|
|
const { resolve } = require('path')
|
|
|
|
const rootDir = resolve(process.argv.slice(2)[0] || '.')
|
|
const nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
|
|
|
|
let options = {}
|
|
if (fs.existsSync(nuxtConfigFile)) {
|
|
options = require(nuxtConfigFile)
|
|
}
|
|
if (typeof options.rootDir !== 'string') {
|
|
options.rootDir = rootDir
|
|
}
|
|
options.dev = false // Force production mode (no webpack middlewares called)
|
|
|
|
const nuxt = new Nuxt(options)
|
|
|
|
new Server(nuxt)
|
|
.listen(
|
|
process.env.PORT || process.env.npm_package_config_nuxt_port,
|
|
process.env.HOST || process.env.npm_package_config_nuxt_host
|
|
)
|