ci: add GitHub Pages deployment workflow for docs site Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
|
|
import { sri } from 'vite-plugin-sri3'
|
|
import path from 'path'
|
|
import fs from 'fs'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
TanStackRouterVite({ target: 'react', autoCodeSplitting: true }),
|
|
react(),
|
|
sri(), // SRI hashes on production builds only (apply: 'build' by default)
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
build: {
|
|
chunkSizeWarningLimit: 1800,
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks(id) {
|
|
// Topology chunk: reactflow + dagre
|
|
if (id.includes('reactflow') || id.includes('@dagrejs/dagre')) {
|
|
return 'topology'
|
|
}
|
|
// Config panels chunk: config + config-editor + network components
|
|
// These are co-loaded in the device detail route
|
|
if (
|
|
id.includes('/components/config/') ||
|
|
id.includes('/components/config-editor/') ||
|
|
id.includes('/components/network/')
|
|
) {
|
|
return 'config-panels'
|
|
}
|
|
// Chart libraries
|
|
if (id.includes('recharts') || id.includes('d3-')) {
|
|
return 'charts'
|
|
}
|
|
// Animation library
|
|
if (id.includes('node_modules/framer-motion')) {
|
|
return 'animations'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
// HTTPS required for Web Crypto API (crypto.subtle) on non-localhost origins.
|
|
// Self-signed cert — click through browser warning once.
|
|
https: fs.existsSync(path.resolve(__dirname, 'certs/dev-key.pem'))
|
|
? {
|
|
key: fs.readFileSync(path.resolve(__dirname, 'certs/dev-key.pem')),
|
|
cert: fs.readFileSync(path.resolve(__dirname, 'certs/dev-cert.pem')),
|
|
}
|
|
: undefined,
|
|
proxy: {
|
|
'/api': {
|
|
target: process.env.VITE_API_URL || 'http://localhost:8001',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
})
|