mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import preact from '@preact/preset-vite'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [preact()]
|
||
|
})
|