mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
454b8c332c
this refactor allows distributing app with esm modules instead of ts
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import { resolve } from 'path'
|
|
export * from './core'
|
|
|
|
export const APP_DIR = resolve(__dirname, 'app')
|
|
|
|
export const getBuilder = () => import('./builder')
|