Files
OSIT-AE-App-Svelte/svelte.config.js
Scott Idem 7e1eaba3bc feat: Migrate ESLint to flat config and resolve initial linting errors
Migrated the ESLint configuration to the new flat config format ()
and addressed several initial linting errors.

Key changes include:
- Updated ESLint configuration to treat  as warnings instead of errors.
- Fixed  errors in  by declaring  and .
- Corrected  error in  by using  instead of an out-of-scope .
- Resolved  error in  by replacing the undefined  directive with the  component.
- Addressed  errors in  by replacing  with  and  with .
- Fixed  errors in  by importing necessary modules (, , ) and adding missing props (, , , , ).
2025-11-17 18:46:54 -05:00

43 lines
1.3 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: {
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"],
// },
// },
}
};
export default config;