mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-26 07:32:01 +00:00
45b4946026
Co-Authored-By: Daniel Roe <daniel@roe.dev>
13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
import { defineNuxtConfig } from '@nuxt/kit'
|
|
|
|
export default defineNuxtConfig({
|
|
buildDir: process.env.NITRO_BUILD_DIR,
|
|
nitro: {
|
|
output: { dir: process.env.NITRO_OUTPUT_DIR }
|
|
},
|
|
publicRuntimeConfig: {
|
|
// @ts-ignore TODO: Fix schema types
|
|
testConfig: '123'
|
|
}
|
|
})
|