mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-24 17:04:55 +00:00
DeepSacrifice
This commit is contained in:
parent
bef6a0b99a
commit
a88e3afddf
23 changed files with 1869 additions and 0 deletions
16
environments/hack0/vite.config.ts
Normal file
16
environments/hack0/vite.config.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import react from "@vitejs/plugin-react";
|
||||
import { defineConfig } from "vite";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
open: true,
|
||||
// Local server runs on 3001, so we need to proxy requests to 3000
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: "http://localhost:3001",
|
||||
changeOrigin: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue