gpstool/svelte.config.js

9 lines
191 B
JavaScript
Raw Normal View History

2023-10-08 18:43:45 +00:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
export default {
preprocess: vitePreprocess(),
compilerOptions: {
cssHash: ({ css, hash }) => `_${hash(css)}`,
},
};