All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- GrateWizard : lancement URL simple (plus de popup embed), bloc dédié violet sur la home entre axes et événement - Messagerie : plus de champs obligatoires, plus de champ email séparé, hint email dans le message, remerciement onboarding - Page /numerique : 3 piliers (Logiciel libre, WoT, Cloud libre) avec projets associés, remplace les extraits livre hors-sujet - Admin : carte Messages ajoutée au dashboard - Safelist icônes complétée Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
devtools: { enabled: true },
|
|
|
|
devServer: {
|
|
port: 3000,
|
|
},
|
|
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@pinia/nuxt',
|
|
'@unocss/nuxt',
|
|
'@vueuse/nuxt',
|
|
'@nuxt/image',
|
|
],
|
|
|
|
unocss: {
|
|
safelist: [
|
|
// Axis block icons (dynamic from YAML)
|
|
'i-lucide-monitor', 'i-lucide-coins', 'i-lucide-landmark',
|
|
'i-lucide-code-2', 'i-lucide-share-2', 'i-lucide-cloud',
|
|
'i-lucide-scale', 'i-lucide-gavel', 'i-lucide-users',
|
|
'i-lucide-droplets', 'i-lucide-calendar-heart',
|
|
// Action icons
|
|
'i-lucide-play', 'i-lucide-book-open', 'i-lucide-sparkles',
|
|
'i-lucide-heart-handshake', 'i-lucide-arrow-up-right',
|
|
'i-lucide-rocket', 'i-lucide-flask-conical', 'i-lucide-arrow-right',
|
|
// Decision page
|
|
'i-lucide-vote', 'i-lucide-scroll-text', 'i-lucide-git-branch',
|
|
],
|
|
},
|
|
|
|
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',
|
|
},
|
|
},
|
|
|
|
nitro: {
|
|
externals: {
|
|
traceInclude: [
|
|
'node_modules/pdfjs-dist/legacy/build/pdf.worker.mjs',
|
|
],
|
|
},
|
|
},
|
|
|
|
})
|