mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
18 lines
300 B
TypeScript
18 lines
300 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "./",
|
|
build:
|
|
{
|
|
target: "es2015",
|
|
terserOptions: {
|
|
mangle: {
|
|
reserved: ['EngineGlue']
|
|
}
|
|
}
|
|
}
|
|
})
|