mirror of
https://github.com/danbulant/presentations
synced 2026-05-19 04:18:36 +00:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
import {defineConfig} from 'vite';
|
|
import motionCanvas from '@motion-canvas/vite-plugin';
|
|
import ffmpeg from '@motion-canvas/ffmpeg';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
motionCanvas(),
|
|
ffmpeg(),
|
|
],
|
|
});
|