Files
OSIT-AE-App-Svelte/svelte.config.js
Scott Idem 8fae3aa89a Fix(ServiceWorker): Mitigate persistent TypeError by disabling auto-registration
- Mitigation: Disabled `serviceWorker.register` in `svelte.config.js` to stop the loop of `TypeError` during script evaluation.
- Debug Tool: Preserved the `fix-sw` cache clearing utility by moving it to `src/routes/testing/fix-sw/+page.svelte` for future investigation.
- Service Worker: Simplified `src/service-worker.js` to a minimal "Hello World" state and removed the problematic `.ts` version.
- Cleanup: Minor formatting adjustment in `ae_events_functions.ts`.
- Docs: Updated `TODO.md` and `GEMINI.md` to reflect the mitigation and planned follow-up.
2026-01-21 16:49:33 -05:00

56 lines
1.9 KiB
JavaScript

// import adapter from '@sveltejs/adapter-auto';
import adapter_node from '@sveltejs/adapter-node';
// import adapter_static from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte'],
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [vitePreprocess()],
vitePlugin: {
inspector: true
},
kit: {
serviceWorker: {
register: false
},
adapter: adapter_node()
// adapter: adapter_static({
// // default options are shown. On some platforms
// // these options are set automatically — see below
// pages: 'build',
// assets: 'build',
// fallback: '200.html', // undefined,
// precompress: false,
// strict: true
// })
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
// adapter: adapter()
// target: "#svelte",
// vite: {
// optimizeDeps: {
// include: ["highlight.js/lib/core"],
// },
// },
},
onwarn: (warning, defaultHandler) => {
// Suppress the 'state_referenced_locally', 'non_reactive_update', and 'css_unused_selector' warnings
if (warning.code === 'state_referenced_locally' || warning.code === 'non_reactive_update' || warning.code === 'css_unused_selector') {
return;
}
// Handle other warnings with the default handler
defaultHandler(warning);
}
};
export default config;