neopy-yiutubedl / vite.config.ts
NeoPy's picture
Upload folder using huggingface_hub
9d69ba4 verified
raw
history blame contribute delete
274 Bytes
import path from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});