Initial commit - Stand 26.04.2026

This commit is contained in:
OpenClaw
2026-04-26 07:51:39 +02:00
commit b29c467187
186 changed files with 39281 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { build } from 'vite';
try {
const result = await build();
console.log('BUILD OK');
if (result?.output) {
result.output.forEach(o => console.log(' →', o.fileName, o.type, o.code?.length || ''));
}
} catch (e) {
console.error('BUILD ERROR:', e.message);
if (e.loc) console.error('Location:', JSON.stringify(e.loc));
if (e.frame) console.error(e.frame);
console.error(e.stack);
}