Files
win32.run/svelte.config.js
2023-02-13 19:32:10 +07:00

19 lines
307 B
JavaScript

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