️ Added Vite config and removed useless files

This commit is contained in:
2023-02-14 22:28:06 -05:00
parent 8fb6118b50
commit 0b0f4681d4
6 changed files with 588 additions and 1153 deletions

15
vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import react from '@vitejs/plugin-react';
export default defineConfig({
publicDir: './public',
plugins: [
// …
react({
// Use React plugin in all *.jsx and *.tsx files
include: '**/*.{jsx,tsx}',
babel: {
plugins: ['babel-plugin-styled-components'],
},
}),
],
});