add register page. add db service

This commit is contained in:
Matteo Rosati
2026-01-25 22:39:46 +01:00
parent 0e1aed27db
commit 54141eb91a
10 changed files with 81 additions and 15 deletions

View File

@@ -4,9 +4,7 @@ import { resolve } from "path";
import FullReload from "vite-plugin-full-reload";
export default defineConfig({
plugins: [
FullReload(["*.html"], { delay: 200 }),
],
plugins: [FullReload(["*.html"], { delay: 200 })],
server: {
watch: {
usePolling: true,
@@ -24,10 +22,6 @@ export default defineConfig({
build: {
chunkSizeWarningLimit: 1600,
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
login: resolve(__dirname, "login.html"),
},
output: {
manualChunks(id) {
if (id.includes("node_modules")) {