Code cleanup

This commit is contained in:
LukeGus
2025-09-28 00:23:00 -05:00
parent d2ba934f61
commit bc8aa69099
76 changed files with 62289 additions and 6806 deletions

View File

@@ -22,10 +22,12 @@ export default defineConfig({
},
base: "./",
server: {
https: useHTTPS ? {
cert: fs.readFileSync(sslCertPath),
key: fs.readFileSync(sslKeyPath),
} : false,
https: useHTTPS
? {
cert: fs.readFileSync(sslCertPath),
key: fs.readFileSync(sslKeyPath),
}
: false,
port: 5173,
host: "localhost",
},