44 lines
924 B
TypeScript
44 lines
924 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
devtools: { enabled: true },
|
|
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@pinia/nuxt',
|
|
'@unocss/nuxt',
|
|
'@vueuse/nuxt',
|
|
'@nuxt/image',
|
|
],
|
|
|
|
app: {
|
|
head: {
|
|
htmlAttrs: { lang: 'fr' },
|
|
link: [
|
|
{ rel: 'preconnect', href: 'https://fonts.bunny.net' },
|
|
{
|
|
rel: 'stylesheet',
|
|
href: 'https://fonts.bunny.net/css?family=syne:400,500,600,700,800|space-grotesk:300,400,500,600,700|jetbrains-mono:400,500,700',
|
|
},
|
|
],
|
|
meta: [
|
|
{ name: 'color-scheme', content: 'dark' },
|
|
],
|
|
},
|
|
pageTransition: { name: 'page', mode: 'out-in' },
|
|
},
|
|
|
|
css: [
|
|
'~/assets/css/main.css',
|
|
],
|
|
|
|
runtimeConfig: {
|
|
adminPassword: '',
|
|
adminSecret: '',
|
|
public: {
|
|
siteUrl: 'https://librodrome.org',
|
|
},
|
|
},
|
|
})
|