Backup before continuing from Codex 5.2 session - User storage, compaction suggestions, streaming improvements

This commit is contained in:
Gemini AI
2025-12-24 21:27:05 +04:00
Unverified
parent f9748391a9
commit e8c38b0add
93 changed files with 10615 additions and 2037 deletions

View File

@@ -4,6 +4,7 @@ import { resolve } from "path"
export default defineConfig({
root: "./src/renderer",
publicDir: resolve(__dirname, "./public"),
plugins: [solid()],
css: {
postcss: "./postcss.config.js",
@@ -20,10 +21,11 @@ export default defineConfig({
noExternal: ["lucide-solid"],
},
server: {
port: 3000,
port: Number(process.env.VITE_PORT ?? 3000),
},
build: {
outDir: "dist",
outDir: resolve(__dirname, "dist"),
chunkSizeWarningLimit: 1000,
rollupOptions: {
input: {
main: resolve(__dirname, "./src/renderer/index.html"),