Fix ports dev : librodrome→3000, grateWizard→3001
Évite les conflits de ports entre projets : - nuxt.config.ts : devServer.port fixé à 3000 - app.config.ts : URL dev grateWizard corrigée 3009→3001 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
export default defineAppConfig({
|
||||
site: {
|
||||
name: 'Le Librodrome',
|
||||
description: 'Une économie du don — enfin concevable. Un livre et 9 chansons, lecture guidée et écoute libre.',
|
||||
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',
|
||||
nav: [
|
||||
{ label: 'Accueil', to: '/' },
|
||||
{ label: 'Lire', to: '/lire' },
|
||||
{ label: 'Écouter', to: '/ecouter' },
|
||||
{ label: 'Autonomie', to: '/autonomie' },
|
||||
{ label: 'Modèle éco', to: '/lire' },
|
||||
{ label: 'En musique', to: '/ecouter' },
|
||||
{ label: 'Évènement', to: '/evenement' },
|
||||
{ label: 'À propos', to: '/a-propos' },
|
||||
],
|
||||
},
|
||||
@@ -20,7 +21,7 @@ export default defineAppConfig({
|
||||
],
|
||||
},
|
||||
gratewizard: {
|
||||
url: import.meta.dev ? 'http://localhost:3009' : 'https://gratewizard.ml',
|
||||
url: import.meta.dev ? 'http://localhost:3001' : 'https://gratewizard.ml',
|
||||
popup: {
|
||||
width: 420,
|
||||
height: 720,
|
||||
|
||||
@@ -4,6 +4,10 @@ export default defineNuxtConfig({
|
||||
|
||||
devtools: { enabled: true },
|
||||
|
||||
devServer: {
|
||||
port: 3000,
|
||||
},
|
||||
|
||||
modules: [
|
||||
'@nuxt/content',
|
||||
'@pinia/nuxt',
|
||||
|
||||
Reference in New Issue
Block a user