File size: 635 Bytes
1c1e321 a00f760 0cf5523 a00f760 1c1e321 a00f760 8c515ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// All configuration options: https://remotion.dev/docs/config
// Each option also is available as a CLI flag: https://remotion.dev/docs/cli
// Note: When using the Node.JS APIs, the config file doesn't apply. Instead, pass options directly to the APIs
import {Config} from '@remotion/cli/config';
import Instructions from './ServerInstructions.json';
import {enableTailwind} from '@remotion/tailwind';
Config.overrideWebpackConfig((currentConfiguration) => {
return enableTailwind(currentConfiguration);
});
Config.setC;
Config.setVideoImageFormat('jpeg');
Config.setFrameRange(Instructions.frames);
// Config.setConcurrency(15);
|