AI Service Reliability Monitor & Failover Switch v1.0.0

This commit is contained in:
Bun Bun
2026-06-15 06:24:05 +00:00
commit e08e26bbc5
21 changed files with 4935 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { crx } from '@crxjs/vite-plugin'
import manifest from './manifest.json' with { type: 'json' }
export default defineConfig({
plugins: [
react(),
crx({ manifest }),
],
build: {
outDir: 'dist',
emptyOutDir: true,
},
})