mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 23:11:37 +08:00
23 lines
457 B
TypeScript
23 lines
457 B
TypeScript
|
|
import { defineConfig } from "vite";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
import tailwindcss from "@tailwindcss/vite";
|
||
|
|
import path from "path";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
"@": path.resolve(__dirname, "./src"),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
outDir: "../hermes_cli/web_dist",
|
||
|
|
emptyOutDir: true,
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
proxy: {
|
||
|
|
"/api": "http://127.0.0.1:9119",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|