mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
|
const { loadNuxt } = require('nuxt-start')
|
||
|
|
||
|
const main = async () => {
|
||
|
const nuxt = await loadNuxt({ for: 'start' })
|
||
|
await nuxt.listen(3000)
|
||
|
}
|
||
|
|
||
|
main()
|