import adapter from "@sveltejs/adapter-node"; import preprocess from "svelte-preprocess"; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: [ preprocess({ postcss: true, }), ], kit: { adapter: adapter(), alias: { "$actions": "src/actions", "$lib": "src/lib", "$routes": "src/routes", } }, }; export default config;