15 lines
375 B
TypeScript
15 lines
375 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
public: {
|
|
baseUrl: process.env.NUXT_PUBLIC_BASE_URL,
|
|
realmKey: process.env.NUXT_PUBLIC_REALM_KEY
|
|
}
|
|
},
|
|
css: [
|
|
'@/assets/style.css'
|
|
]
|
|
})
|