DocsGPT/extensions/react-widget/vite.config.ts

13 lines
240 B
TypeScript
Raw Normal View History

2024-02-18 22:44:09 +00:00
import path from "path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vite"
2023-09-12 13:01:12 +00:00
export default defineConfig({
2024-02-18 22:44:09 +00:00
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
2023-09-12 13:01:12 +00:00
},
},
2024-02-18 22:44:09 +00:00
})