mirror of
https://github.com/cupcakearmy/formhero.git
synced 2024-12-22 16:16:24 +00:00
12 lines
224 B
JavaScript
12 lines
224 B
JavaScript
|
import react from '@vitejs/plugin-react'
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
root: './examples',
|
||
|
plugins: [react()],
|
||
|
build: {
|
||
|
outDir: '../docs',
|
||
|
},
|
||
|
})
|