mirror of
https://github.com/LukeHagar/OpenAPI.gg.git
synced 2025-12-06 12:37:48 +00:00
Update dependencies and package manager to use Bun for improved performance and compatibility. Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
19 lines
452 B
JavaScript
19 lines
452 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
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()
|
|
}
|
|
};
|
|
export default config;
|