Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions webview-ui/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,6 @@ export default defineConfig(({ mode }) => {
// Ensure source maps are properly included in the build
minify: mode === "production" ? "esbuild" : false,
rollupOptions: {
input: {
index: resolve(__dirname, "index.html"),
"browser-panel": resolve(__dirname, "browser-panel.html"),
},
output: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the input configuration breaks the multi-page build. Vite will only discover and build index.html by default, causing browser-panel.html to be excluded from production builds. This will break the browser panel feature entirely in production environments.

Fix it with Roo Code or mention @roomote and request a fix.

entryFileNames: `assets/[name].js`,
chunkFileNames: (chunkInfo) => {
Expand Down
Loading