-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsvelte.config.js
More file actions
26 lines (24 loc) · 792 Bytes
/
svelte.config.js
File metadata and controls
26 lines (24 loc) · 792 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
25
26
// Tauri doesn't have a Node.js server to do proper SSR
// so we will use adapter-static to prerender the app (SSG)
// 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: [
{
name: 'injectTailwind',
style({ content, filename }) {
console.log('style', filename);
if (!content.includes('@import "tailwindcss/theme"')) {
content = `@import "tailwindcss/theme" theme(reference);\n${content}`;
}
return { code: content, map: null };
}
},
vitePreprocess()],
kit: {
adapter: adapter(),
},
};
export default config;