animations

This commit is contained in:
ryanfitzpatrickio
2026-08-03 16:04:46 -05:00
parent 8b28e299e6
commit fb1ebeed05
28 changed files with 5246 additions and 105 deletions
+3
View File
@@ -1,7 +1,9 @@
import { resolve } from 'node:path';
import { defineConfig } from 'vite';
import { freeMocapBridge } from './tools/freemocap-vite-plugin.mjs';
export default defineConfig({
plugins: [freeMocapBridge({ projectRoot: import.meta.dirname })],
server: { port: 5174, open: true },
// Multi-page: main game + character studio both ship as real HTML entries.
build: {
@@ -13,6 +15,7 @@ export default defineConfig({
input: {
main: resolve(import.meta.dirname, 'index.html'),
character: resolve(import.meta.dirname, 'character.html'),
animation: resolve(import.meta.dirname, 'animation.html'),
},
},
},