This commit is contained in:
2025-10-06 18:27:50 +02:00
commit 3e191a4f60
213 changed files with 22261 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
csp: {
//mode: 'hash',
directives: {
'script-src': ['self','unsafe-inline','*'],
'style-src': ['self','unsafe-inline','*'],
}
},
output: {
bundleStrategy: 'inline',
}
},
};
export default config;