mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
17 lines
356 B
JavaScript
17 lines
356 B
JavaScript
/*!
|
|
* Nuxt.js
|
|
* (c) 2016-2017 Chopin Brothers
|
|
* Core maintainer: Pooya (@pi0)
|
|
* Released under the MIT License.
|
|
*/
|
|
|
|
// Node Source Map Support
|
|
// https://github.com/evanw/node-source-map-support
|
|
require('source-map-support').install()
|
|
|
|
// Fix babel flag
|
|
/* istanbul ignore else */
|
|
process.noDeprecation = true
|
|
|
|
module.exports = require('./dist/nuxt')
|