- Procedural 3D world: dollhouse shop, town, day/night, weather, seasons - Customer AI with personalities (story NPCs, thieves, weekly regulars) - Economy: suppliers, negotiation, pricing psychology, daily accounting - Staff with traits/loyalty, 8 expansion levels, furniture & decoration - Events with choices, quests, achievements, 4 difficulties, rival shop - Animated daily report, analytics, save/load (3 slots + autosave) - Procedural music & SFX (WebAudio), zero external assets - Test harnesses: simtest (node), verify/check/e2e (headless browser)
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
server: { host: '127.0.0.1', port: 5173, strictPort: true },
|
|
build: {
|
|
target: 'es2022',
|
|
chunkSizeWarningLimit: 1600,
|
|
assetsInlineLimit: 0
|
|
}
|
|
});
|