mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
26 lines
653 B
JavaScript
Executable File
26 lines
653 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 middleware called)
|
|
|
|
var nuxt = new Nuxt(options)
|
|
|
|
new nuxt.Server(nuxt)
|
|
.listen(
|
|
process.env.PORT || process.env.npm_package_config_nuxt_port,
|
|
process.env.HOST || process.env.npm_package_config_nuxt_host
|
|
)
|