mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-12 13:50:01 -04:00
13 lines
240 B
JavaScript
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;
|