Merge branch 'dev'

This commit is contained in:
vcoppe
2026-04-06 14:26:56 +02:00
3 changed files with 3632 additions and 3812 deletions

7427
website/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -54,8 +54,7 @@
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^6.3.5",
"vite-plugin-node-polyfills": "^0.23.0"
"vite": "^6.3.5"
},
"type": "module",
"dependencies": {

View File

@@ -1,21 +1,11 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { enhancedImages } from '@sveltejs/enhanced-img';
import { defineConfig } from 'vite';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
ssr: {
noExternal: ['gpx'],
},
plugins: [
nodePolyfills({
globals: {
Buffer: true,
},
}),
enhancedImages(),
tailwindcss(),
sveltekit(),
],
plugins: [enhancedImages(), tailwindcss(), sveltekit()],
});