mirror of
https://github.com/ashishpatel26/500-AI-Agents-Projects.git
synced 2026-09-03 06:45:48 +08:00
13 lines
227 B
JavaScript
13 lines
227 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
base: "/500-AI-Agents-Projects/",
|
|
plugins: [react()],
|
|
server: {
|
|
fs: {
|
|
allow: [".."],
|
|
},
|
|
},
|
|
});
|