Merge branch 'character' into dev

This commit is contained in:
Clément Pons
2025-07-21 18:00:00 +02:00
82 changed files with 15935 additions and 1000 deletions

View File

@@ -5,6 +5,7 @@ import path from 'node:path'
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
ssr: false,
modules: [
'@nuxtjs/color-mode',
'nuxt-security',
@@ -61,14 +62,14 @@ export default defineNuxtConfig({
current: 'currentColor',
light: {
red: '#e93147',
redBack: '#F9C7CD',
orange: '#ec7500',
yellow: '#e0ac00',
green: '#08b94e',
greenBack: '#BCECCF',
orange: '#FF9800',
yellow: '#FFEB3B',
green: '#388E3C',
indigo: '#7986CB',
cyan: '#00bfbc',
lime: '#8BC34A',
blue: '#086ddd',
purple: '#7852ee',
purple: '#AB47BC',
pink: '#d53984',
0: "#ffffff",
5: "#fcfcfc",
@@ -131,6 +132,9 @@ export default defineNuxtConfig({
experimental: {
tasks: true,
},
watchOptions: {
usePolling: true,
},
rollupConfig: {
external: ['bun'],
plugins: [
@@ -141,12 +145,12 @@ export default defineNuxtConfig({
runtimeConfig: {
session: {
password: '699c46bd-9aaa-4364-ad01-510ee4fe7013',
maxAge: 60 * 60 * 24 * 30,
},
database: 'db.sqlite',
mail: {
host: '',
port: '',
proxy: '',
user: '',
passwd: '',
dkim: '',
@@ -167,6 +171,7 @@ export default defineNuxtConfig({
sources: ['/api/__sitemap__/urls']
},
experimental: {
buildCache: true,
componentIslands: {
selectiveClient: true,
},