switch to svelte and chart.js

This commit is contained in:
Vincent van der Wal
2025-09-11 21:09:23 +02:00
parent e4f93be75e
commit e0fda01f7a
27 changed files with 8000 additions and 1335 deletions
+17
View File
@@ -0,0 +1,17 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
pages: 'data',
assets: 'data',
})
}
};
export default config;