forked from EHV/sejeteralo
3ad89ab744
- extends: ['../../yvv-nuxt-base'] → ['@yvv/nuxt-base'] - package.json : dép git+ssh://gitea@git.open.us.org/yvv/yvv-nuxt-base.git#v0.1.0 - résout au commit taggé b1c6a2f (identique au layer local) - install --legacy-peer-deps (conflit préexistant @pinia/nuxt 0.9 / pinia 3) - build npm vert, prod :3099 → 200, smoke palettes 12/12 (6 palettes × mobile/desktop, .palette-dark sur nuit/ocean) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
600 B
TypeScript
33 lines
600 B
TypeScript
export default defineNuxtConfig({
|
|
extends: ['@yvv/nuxt-base'],
|
|
|
|
compatibilityDate: '2025-01-01',
|
|
future: { compatibilityVersion: 4 },
|
|
|
|
modules: ['@pinia/nuxt'],
|
|
|
|
devtools: { enabled: true },
|
|
|
|
devServer: {
|
|
port: 3009,
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBase: 'http://localhost:8000/api/v1',
|
|
},
|
|
},
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
app: {
|
|
head: {
|
|
title: 'SejeteralO - Tarification participative de l\'eau',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
],
|
|
},
|
|
},
|
|
})
|