1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-22 08:54:15 +00:00
comty/packages/app/vite.config.js

11 lines
207 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(),
})