From 6876af8b88e5430014e9ce9bcf85492aa096c328 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 8 Apr 2023 18:05:40 +0200 Subject: [PATCH] Created the vite.config.js --- vite.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vite.config.js diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..35d8135 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,6 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], +})