-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsvelte.config.js
More file actions
24 lines (22 loc) · 739 Bytes
/
Copy pathsvelte.config.js
File metadata and controls
24 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Tauri doesn't have a Node.js server to do proper SSR
// so we use adapter-static with a fallback to index.html to put the site in SPA mode
// See: https://svelte.dev/docs/kit/single-page-apps
// See: https://v2.tauri.app/start/frontend/sveltekit/ for more info
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
compilerOptions: {
warningFilter: (warning) =>
/*!warning.filename?.includes('node_modules') &&*/ !warning.code.startsWith(
"a11y",
),
},
kit: {
adapter: adapter({
fallback: "index.html",
}),
},
};
export default config;