mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
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(),
|
|
}) |