rework this messy website partially

This commit is contained in:
2023-07-24 17:41:54 +01:00
parent 5e756dcc7b
commit 59ec4c73c5
22 changed files with 298 additions and 52 deletions

View File

@@ -1,4 +1,5 @@
import adapter from '@sveltejs/adapter-auto';
// import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
@@ -8,7 +9,15 @@ const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter()
adapter: adapter(
{
pages: 'build',
assets: 'build',
fallback: 'index.html',
precompress: false,
strict: true
}
)
}
};