gpstool/svelte.config.js
2023-10-08 20:43:45 +02:00

9 lines
191 B
JavaScript

import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
export default {
preprocess: vitePreprocess(),
compilerOptions: {
cssHash: ({ css, hash }) => `_${hash(css)}`,
},
};