1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-22 00:44:17 +00:00
comty/packages/app/vite.config.js
2022-06-01 19:48:44 +02:00

11 lines
229 B
JavaScript

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