Skip to content

Commit 0dcd656

Browse files
committed
feat: add Remotion entry point with registerRoot()
The project was missing a proper Remotion entry file that calls registerRoot(). This is required by `remotion lambda sites create` to bundle and deploy the site to S3. remotion/index.ts only re-exports components — it doesn't register the root. This new entry.ts is the correct entry point for Lambda deploys and Remotion Studio.
1 parent a23f23e commit 0dcd656

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

remotion/entry.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { registerRoot } from "remotion";
2+
import { RemotionRoot } from "./Root";
3+
4+
registerRoot(RemotionRoot);

0 commit comments

Comments
 (0)