mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
9 lines
330 B
TypeScript
9 lines
330 B
TypeScript
import { fileURLToPath } from 'url'
|
|
import { dirname, resolve } from 'pathe'
|
|
|
|
let _distDir = dirname(fileURLToPath(import.meta.url))
|
|
if (_distDir.endsWith('chunks')) { _distDir = dirname(_distDir) }
|
|
export const distDir = _distDir
|
|
export const pkgDir = resolve(distDir, '..')
|
|
export const runtimeDir = resolve(distDir, 'runtime')
|