mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
import 'babel-polyfill'
|
|
|
|
import consola from 'consola'
|
|
|
|
import core from './core'
|
|
import builder from './builder'
|
|
import * as Utils from './common/utils'
|
|
|
|
consola.warn('You are using legacy build of Nuxt. Please consider upgrading your Node.js version to 8.x or later.')
|
|
|
|
export default Object.assign({ Utils }, core, builder)
|