mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
18 lines
393 B
JavaScript
18 lines
393 B
JavaScript
import getConfig from "./.config.js"
|
|
|
|
import { defineConfig } from "vite"
|
|
import reactRefresh from "@vitejs/plugin-react-refresh"
|
|
|
|
import Pages from "vite-plugin-pages"
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
reactRefresh(),
|
|
Pages({
|
|
react: true,
|
|
routeStyle: "next",
|
|
extensions: ["jsx", "tsx"],
|
|
}),
|
|
],
|
|
...getConfig(),
|
|
}) |