8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import webfontDownload from "vite-plugin-webfont-dl";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), webfontDownload()],
|
|
});
|