diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:07:16 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-01 16:07:16 -0700 |
commit | 17e95224a083ccd9e522f8712bb10846a2dada8a (patch) | |
tree | 0f9e58c0974129ce712af1d695980ccd498aa2cf /vite.config.ts | |
download | the-abstraction-engine-17e95224a083ccd9e522f8712bb10846a2dada8a.tar.gz the-abstraction-engine-17e95224a083ccd9e522f8712bb10846a2dada8a.zip |
add assets, vite init
Diffstat (limited to 'vite.config.ts')
-rw-r--r-- | vite.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..5a33944 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}) |