vulpinum/svelte.config.js
Freeplay 28b8d51bcf Replace stylus-lang with postcss (#6)
bwah

Reviewed-on: #6
Co-authored-by: Freeplay <freeplay@duck.com>
Co-committed-by: Freeplay <freeplay@duck.com>
2024-04-23 23:10:56 -04:00

26 lines
524 B
JavaScript

import adapter from "svelte-adapter-bun";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import { join } from "path";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [vitePreprocess()],
kit: {
adapter: adapter(),
},
// need to figure out how to change keybind,
// ctrl+shift too annoying when switching tabs
// vitePlugin: {
// experimental: {
// inspector: true,
// },
// inspector: {
// toggleKeyCombo: "alt-shift"
// }
// },
};
export default config;