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

14 lines
291 B
JavaScript
Executable File

import path from "path"
import getConfig from "./.config.js"
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
//import electron, { onstart } from "vite-plugin-electron"
export default defineConfig({
plugins: [
react(),
],
...getConfig(),
})