mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Basic Entity hierarchy sync
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
export default defineConfig(({ mode }) => {
|
||||
const isDebug = mode === 'debug'
|
||||
|
||||
return {
|
||||
plugins: [react()],
|
||||
base: "./",
|
||||
build: {
|
||||
target: "es2015",
|
||||
minify: false,
|
||||
terserOptions: undefined,
|
||||
rollupOptions: {
|
||||
preserveModules: true,
|
||||
output: {
|
||||
dir: 'dist',
|
||||
entryFileNames: '[name].js',
|
||||
chunkFileNames: '[name].js',
|
||||
assetFileNames: '[name].[ext]'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user