mirror of
https://github.com/daggerhashimoto/openclaw-nerve
synced 2026-04-21 10:37:17 +00:00
* Refine Nerve shell and entry flow UI * Surface Instrument Sans across UI chrome * Polish cockpit chrome and panel interactions * Finalize UI polish and fix explorer menu bounds * Adapt overhaul for mobile and layout polish * Refine theme palette and shell layout * Normalize kanban surfaces and harden task tones * Fix compact layout collapse flow for CI * Fix stale ContextMeter test label * Fix tablet explorer and Kanban review issues * Normalize config tab controls * Normalize config tab editor actions * Fix file browser preference persistence * Wrap long config file lines
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import path from 'path'
|
|
import { readFileSync, existsSync } from 'fs'
|
|
|
|
const pkg = JSON.parse(readFileSync('./package.json', 'utf-8'))
|
|
|
|
// HTTPS is enabled only if both cert files exist, unless explicitly disabled for tunneled/local dev.
|
|
const certPath = './certs/cert.pem'
|
|
const keyPath = './certs/key.pem'
|
|
const certsExist = existsSync(certPath) && existsSync(keyPath)
|
|
const httpsEnabled = process.env.VITE_DISABLE_HTTPS !== 'true' && certsExist
|
|
const httpsConfig = httpsEnabled
|
|
? { key: readFileSync(keyPath), cert: readFileSync(certPath) }
|
|
: undefined
|
|
|
|
// Port is configurable via VITE_PORT env var (default: 3080)
|
|
const port = parseInt(process.env.VITE_PORT || '3080', 10)
|
|
const apiTarget = `http://localhost:${process.env.PORT || '3081'}`
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
define: {
|
|
__APP_VERSION__: JSON.stringify(pkg.version),
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
server: {
|
|
port,
|
|
host: process.env.VITE_HOST || '127.0.0.1',
|
|
https: httpsConfig,
|
|
proxy: {
|
|
'/api': apiTarget,
|
|
'/ws': {
|
|
target: apiTarget,
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
sourcemap: false, // No sourcemaps in production
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
// Core React libraries (most stable, cache-friendly)
|
|
'react-vendor': ['react', 'react-dom'],
|
|
|
|
// Markdown rendering (heavy with highlight.js)
|
|
'markdown': ['react-markdown', 'remark-gfm', 'highlight.js'],
|
|
|
|
// UI components (radix + lucide icons)
|
|
'ui-vendor': ['lucide-react'],
|
|
|
|
// Utility libraries
|
|
'utils': ['clsx', 'tailwind-merge', 'class-variance-authority', 'dompurify'],
|
|
},
|
|
},
|
|
},
|
|
chunkSizeWarningLimit: 600,
|
|
},
|
|
})
|