rage-framework-example/apps/cef/vite.config.ts
Oleksandr Honcharov 9ab27a83dd init
2024-06-13 01:59:21 +03:00

12 lines
248 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
build: {
outDir: '../../server/client_packages/cef',
emptyOutDir: true
}
})