🎨 format

This commit is contained in:
Rune Harlyk
2025-10-11 10:42:32 +02:00
parent 4d51b9f556
commit 91a7b170fe
139 changed files with 6645 additions and 6317 deletions
+18 -18
View File
@@ -8,23 +8,23 @@ import tailwindcss from '@tailwindcss/vite'
const basePath = process.env.BASE_PATH ?? ''
export default defineConfig({
base: basePath,
plugins: [
tailwindcss(),
sveltekit(),
Icons({
compiler: 'svelte'
}),
viteLittleFS(),
EnvCaster()
],
server: {
proxy: {
'/api': {
target: 'http://spot-micro.local/',
changeOrigin: true,
ws: true
}
base: basePath,
plugins: [
tailwindcss(),
sveltekit(),
Icons({
compiler: 'svelte'
}),
viteLittleFS(),
EnvCaster()
],
server: {
proxy: {
'/api': {
target: 'http://spot-micro.local/',
changeOrigin: true,
ws: true
}
}
}
}
})