cli/cmd/core-demo/public/vite.config.js
Snider 9ef000853e feat: add lthn-desktop as default GUI and restructure build targets
- Set lthn-desktop as the default gui build target (port 9247)
- Add core-demo GUI with Vite frontend (port 9245)
- Configure core-gui on port 9246 to avoid conflicts
- Update .gitignore for lthn-desktop and core-demo artifacts
- Include lthn-desktop Angular frontend with Monaco editor and Claude panel
- Add frontend.old directory preserving original lthn-desktop pages

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 14:40:33 +00:00

17 lines
517 B
JavaScript

import { defineConfig } from 'vite';
// https://vitejs.dev/config/
export default defineConfig({
// Set the root of the project to the 'html' directory.
// Vite will look for index.html in this folder.
root: 'html',
build: {
// Set the output directory for the build.
// We need to go up one level from 'html' to place the 'dist' folder
// in the correct location for Wails.
outDir: '../dist',
// Ensure the output directory is emptied before each build.
emptyOutDir: true,
},
});