forked from EHV/librodrome
- Vouvoiement partout dans les pages numerique (cloud-libre, logiciel-libre, wot) - Bouton "Ouvrir libreDecision" dans home AxisBlock (Décision collective) - AxisAction supporte href pour liens externes - URL prod : decision.librodrome.org - Labels "Ouvrir libreDecision" (sans Ğ) dans citoyenne/index et [slug] - app.config.ts : URL prod libredecision mise à jour Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
834 B
TypeScript
30 lines
834 B
TypeScript
export default defineAppConfig({
|
|
site: {
|
|
name: 'Le Librodrome',
|
|
description: 'Une économie du don — enfin concevable. Un livre et des chansons, lecture guidée et écoute libre.',
|
|
url: 'https://librodrome.org',
|
|
},
|
|
header: {
|
|
height: '4rem',
|
|
},
|
|
footer: {
|
|
credits: '© 2026 Le Librodrome — Productions collectives',
|
|
links: [
|
|
{ label: 'Mentions légales', to: '/mentions-legales' },
|
|
],
|
|
},
|
|
gratewizard: {
|
|
url: import.meta.dev ? 'http://localhost:3001' : 'https://gratewizard.axiom-team.fr',
|
|
popup: {
|
|
width: 480,
|
|
height: 860,
|
|
},
|
|
},
|
|
libredecision: {
|
|
url: import.meta.dev ? 'http://localhost:3002' : 'https://decision.librodrome.org',
|
|
},
|
|
sejeteral0: {
|
|
url: import.meta.dev ? 'http://localhost:3009' : 'https://collectivites.librodrome.org',
|
|
},
|
|
})
|