mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-27 01:06:09 +00:00
1a21fd43c0
need to keep class names due to serialization depending on them
15 lines
261 B
JavaScript
15 lines
261 B
JavaScript
import { defineConfig } from 'vite';
|
|
// import fs from 'vite-plugin-fs';
|
|
|
|
export default defineConfig({
|
|
plugins: [/*fs()*/],
|
|
server: { host: '0.0.0.0', port: 8000 },
|
|
clearScreen: false,
|
|
build: {
|
|
minify: 'esbuild',
|
|
},
|
|
esbuild: {
|
|
keepNames: true,
|
|
}
|
|
})
|