d63d58ccb5
- Move 15 old workflow-* packages to legacy-packages/ (inactive, preserved for reference)
- Rename templates/ → examples/ for clarity
- Rewrite docs/architecture.md to reflect current uwf architecture
- Active packages remain in packages/: cli-uwf, uwf-agent-hermes, uwf-agent-kit, uwf-moderator, uwf-protocol, workflow-util
小橘 🍊(NEKO Team)
23 lines
587 B
TypeScript
23 lines
587 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import { viteLimitLinePlugin } from "./plugins/vite-limit-line-plugin.js";
|
|
|
|
// biome-ignore lint/style/noDefaultExport: Vite loads config from default export.
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
...viteLimitLinePlugin({ maxReactFCLines: 300, maxFileLines: 600 }),
|
|
],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://127.0.0.1:7860",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|