mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { defineNuxtConfig } from '@nuxt/kit'
|
|
|
|
// @ts-ignore
|
|
global.__NUXT_PREPATHS__ = (global.__NUXT_PREPATHS__ || []).concat(__dirname)
|
|
|
|
export default defineNuxtConfig({
|
|
buildModules: [
|
|
'@nuxt/nitro/compat'
|
|
]
|
|
})
|