mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
20 lines
340 B
JavaScript
20 lines
340 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// // https://vitejs.dev/config/
|
|
// export default defineConfig({
|
|
// plugins: [react()],
|
|
// })
|
|
|
|
|
|
import path from "path"
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
})
|