mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
ef7a42649d
nuxt-start and nuxt/legacy are also coming!
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
/*!
|
|
* Nuxt.js
|
|
* (c) 2016-2018 Chopin Brothers
|
|
* Core maintainers: Pooya Parsa (@pi0) - Clark Du (@clarkdo)
|
|
* Released under the MIT License.
|
|
*/
|
|
|
|
const fs = require('fs')
|
|
|
|
if (fs.existsSync('dist/nuxt.js')) {
|
|
module.exports = require('./dist/nuxt.js')
|
|
} else {
|
|
module.exports = require('./lib/index.js')
|
|
}
|