mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-28 07:43:18 +00:00
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
/**
|
|
* Note: When using the Node.JS APIs, the config file
|
|
* doesn't apply. Instead, pass options directly to the APIs.
|
|
*
|
|
* All configuration options: https://remotion.dev/docs/config
|
|
*/
|
|
|
|
import { Config } from "@remotion/cli/config";
|
|
import { enableTailwind } from '@remotion/tailwind-v4';
|
|
|
|
Config.setVideoImageFormat("jpeg");
|
|
Config.setOverwriteOutput(true);
|
|
Config.overrideWebpackConfig(enableTailwind);
|