/*** IMPORT ------------------------------------------- ***/ import { defineConfig } from "vite"; import { svelte, vitePreprocess } from "@sveltejs/vite-plugin-svelte"; /*** EXPORT ------------------------------------------- ***/ export default defineConfig({ plugins: [ svelte({ preprocess: vitePreprocess({ style: { scss: { loadPaths: ["node_modules"] } } }) }) ], root: "playground", server: { port: 5173 } });