mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
d88948bdea
v0.3.0
30 lines
716 B
JavaScript
Executable File
30 lines
716 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.build = false // Disable building
|
|
options.dev = false // Force production mode (no webpack middlewares called)
|
|
|
|
new Nuxt(options)
|
|
.then((nuxt) => {
|
|
new Server(nuxt)
|
|
.listen(process.env.PORT, process.env.HOST)
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|