initiation librodrome
This commit is contained in:
43
nuxt.config.ts
Normal file
43
nuxt.config.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
// 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',
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user