From 17c1d3d2070ee0c060c3e71a9e5868f004b2b034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Tue, 16 May 2023 19:52:29 -0600 Subject: Start point. Visit https://github.com/nvh95/vite-react-template-redux to see original template. --- vite.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vite.config.js (limited to 'vite.config.js') diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..b1b5f91 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()] +}) -- cgit v1.2.3