mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
|
const { loadNuxt, build } = require('nuxt')
|
||
|
|
||
|
const main = async () => {
|
||
|
const nuxt = await loadNuxt({ for: 'dev' })
|
||
|
build(nuxt)
|
||
|
await nuxt.listen(3000)
|
||
|
}
|
||
|
|
||
|
main()
|