Update devDependencies in package.json and simplify Svelte config by removing sourcemap option

This commit is contained in:
becarta
2025-05-16 00:32:57 +02:00
parent 046b5241a2
commit bfdac3f322
2 changed files with 11 additions and 12 deletions

View File

@@ -1,8 +1,7 @@
/** @type {import('@sveltejs/vite-plugin-svelte').Options} */
const config = {
compilerOptions: {
css: 'injected',
enableSourcemap: true
css: 'injected'
}
};