Nuxt/packages/nuxt3/src/index.ts
Pooya Parsa 454b8c332c refactor: move app to src with nuxt/app import
this refactor allows distributing app with esm modules instead of ts
2021-01-18 13:46:19 +01:00

7 lines
157 B
TypeScript

import { resolve } from 'path'
export * from './core'
export const APP_DIR = resolve(__dirname, 'app')
export const getBuilder = () => import('./builder')