30 lines
896 B
TypeScript
30 lines
896 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: {enabled: true},
|
|
|
|
css: [
|
|
'@/assets/style.css',
|
|
'@/assets/base-style.css'
|
|
],
|
|
app: {
|
|
head: {
|
|
title: 'Registry',
|
|
link: [
|
|
{
|
|
rel: 'stylesheet',
|
|
href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200'
|
|
},
|
|
{rel: 'icon', type: 'image/x-icon', href: '/icon.png'}
|
|
]
|
|
}
|
|
},
|
|
runtimeConfig: {
|
|
public: {
|
|
clientId: process.env.NUXT_PUBLIC_CLIENT_ID,
|
|
idpUrl: process.env.NUXT_PUBLIC_IDP_URL,
|
|
logoutUrl: process.env.NUXT_PUBLIC_LOGOUT_URL
|
|
}
|
|
},
|
|
modules: ['@pinia/nuxt']
|
|
}) |