adrift/frontend/svelte.config.cjs
2023-08-13 23:57:06 -04:00

13 lines
240 B
JavaScript

// DO NOT CONVERT THIS TO ESMODULES, VITE WILL BREAK
const preprocess = require("svelte-preprocess");
const config = {
preprocess: [
preprocess({
postcss: true,
typescript: true,
}),
],
};
module.exports = config;