Files
calorie-tracker/svelte.config.js
Vilian Gerdzhikov 353ec976d5 Switching ui lib & refactoring (#80)
switch to shadcn ui
bump runtime versions (node, pnpm, etc)
refactor gui
2024-01-24 08:05:07 +02:00

13 lines
288 B
JavaScript

import sveltePreprocess from 'svelte-preprocess'
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
sveltePreprocess({
postcss: true,
sourceMap: !!process.env.TAURI_DEBUG
})
]
}