merge newui branch

This commit is contained in:
Gani Georgiev
2026-04-18 16:29:34 +03:00
parent 58f605e90c
commit 4c44044c0c
804 changed files with 58660 additions and 56663 deletions

View File

@@ -1,31 +1,15 @@
import { defineConfig } from 'vite';
import { svelte, vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { defineConfig } from "vite";
// see https://vitejs.dev/config
export default defineConfig({
server: {
port: 3000,
},
envPrefix: 'PB',
base: './',
envPrefix: "PB",
base: "./",
build: {
chunkSizeWarningLimit: 1000,
reportCompressedSize: false,
},
plugins: [
svelte({
preprocess: [vitePreprocess()],
onwarn: (warning, handler) => {
if (warning.code.startsWith('a11y-')) {
return; // silence a11y warnings
}
handler(warning);
},
}),
],
resolve: {
alias: {
'@': __dirname + '/src',
}
"@": __dirname + "/src",
},
},
})
});