mirror of
https://github.com/garraflavatra/gpstool.git
synced 2025-01-18 03:37:58 +00:00
9 lines
191 B
JavaScript
9 lines
191 B
JavaScript
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
export default {
|
|
preprocess: vitePreprocess(),
|
|
compilerOptions: {
|
|
cssHash: ({ css, hash }) => `_${hash(css)}`,
|
|
},
|
|
};
|