completely re-initialize Vite/React configuration to dummy

This commit is contained in:
2024-11-10 14:02:47 -06:00
parent 01081ee834
commit 69c83edd3a
19 changed files with 961 additions and 1371 deletions

View File

@@ -1,12 +1,13 @@
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import path from 'path'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
"@": path.resolve(__dirname, "./src"),
},
},
});
})