mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
|
import Options from './options'
|
||
|
import ModuleContainer from './module'
|
||
|
import Nuxt from './nuxt'
|
||
|
import Renderer from './renderer'
|
||
|
import * as Utils from 'utils'
|
||
|
|
||
|
export default {
|
||
|
Options,
|
||
|
ModuleContainer,
|
||
|
Nuxt,
|
||
|
Renderer,
|
||
|
Utils
|
||
|
}
|