1import { sveltekit } from "@sveltejs/kit/vite"; 2import { defineConfig } from "vite"; 3 4export default defineConfig({ 5 plugins: [sveltekit()], 6 css: { 7 postcss: './postcss.config.js' 8 }, 9 build: { 10 target: "esnext", 11 }, 12});