🎨 Format and simplify controls

This commit is contained in:
Rune Harlyk
2026-01-02 22:35:04 +01:00
committed by nikguin04
parent a6b5b0881a
commit 0ef55bcc7e
25 changed files with 6424 additions and 5981 deletions
+10 -10
View File
@@ -3,15 +3,15 @@ import { svelte } from '@sveltejs/vite-plugin-svelte'
import path from 'path'
const config: UserConfigExport = {
plugins: [svelte()],
resolve: {
alias: {
$lib: path.resolve(__dirname, './src/lib')
}
},
test: {
globals: true,
environment: 'jsdom'
}
plugins: [svelte()],
resolve: {
alias: {
$lib: path.resolve(__dirname, './src/lib')
}
},
test: {
globals: true,
environment: 'jsdom'
}
}
export default defineConfig(config)