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