mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 09:02:03 +00:00
bbed4dbd02
Add [ddv](https://github.com/ddvjs/ddv) virtual host management worker support update pageage.json
31 lines
811 B
JavaScript
Executable File
31 lines
811 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
var fs = require('fs')
|
|
var Nuxt = require('../')
|
|
var resolve = require('path').resolve
|
|
|
|
var rootDir = resolve(process.argv.slice(2)[0] || '.')
|
|
var nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
|
|
|
|
var 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)
|
|
|
|
var nuxt = new Nuxt(options)
|
|
|
|
var nuxtServer = new nuxt.Server(nuxt)
|
|
module.exports.server = nuxtServer.server
|
|
module.exports.nuxtConfigFile = nuxtConfigFile
|
|
|
|
if (!process.env.NOTLISTEN) {
|
|
nuxtServer.listen(
|
|
process.env.PORT || process.env.npm_package_config_nuxt_port,
|
|
process.env.HOST || process.env.npm_package_config_nuxt_host
|
|
)
|
|
}
|