mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
12 lines
208 B
JavaScript
Executable File
12 lines
208 B
JavaScript
Executable File
import { defineConfig } from "vite"
|
|
|
|
import react from "@vitejs/plugin-react"
|
|
|
|
import getConfig from "./.config.js"
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
],
|
|
...getConfig(),
|
|
}) |