mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-06-01 15:13:58 +00:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
|
import { defineConfig } from 'vite'
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
|
||
|
})
|