mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-17 10:46:16 +01:00
16 lines
275 B
TypeScript
16 lines
275 B
TypeScript
import { defineConfig } from "vite"
|
|
import react from "@vitejs/plugin-react"
|
|
import path from "path"
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
esbuild: {
|
|
legalComments: "external",
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
})
|