Files
excalidraw-box/src/App.tsx
ruinivist 7bfa1051c3 chore: strip repository to provide a minimal reproduction of bun code splitting bug
Removes all server-side code, tests, CI pipelines, Docker config, extra CSS, and sidebar logic. Modifies `App.tsx` to just eagerly load and render `<Excalidraw />`. Modifies `package.json` to only contain a basic build command to reproduce the bug where Bun injects a dynamic chunk rather than the entrypoint chunk.
2026-05-30 17:59:06 +00:00

10 lines
166 B
TypeScript

import { Excalidraw } from "@excalidraw/excalidraw";
export function App() {
return (
<div style={{ height: "100vh" }}>
<Excalidraw />
</div>
);
}