mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
22 lines
454 B
JavaScript
22 lines
454 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
|
|
process.noDeprecation = true
|
|
|
|
// Require Core
|
|
const Core = require('./dist/core.js')
|
|
|
|
// Require Builder
|
|
const Builder = require('./dist/builder')
|
|
|
|
module.exports = Object.assign(Core, Builder)
|