Visiting https://ffmpegwasm.github.io/vue-app/ and running a dev server locally both result in a "ReferenceError: SharedArrayBuffer is not defined" error. I tested with both Firefox 91.0.2 and Chrome 92.0.4515.159.
Hello - this is a super exciting project. Thanks for the React template. I'm having issues with trying this on Next.js and I suspect that would happen with this template as well. ReferenceError: SharedArrayBuffer is not defined From what...
javascript // vite.config.ts import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; export default defineConfig({ plugins: [vue()], server: { headers: { 'Cross-Origin-Opener-Policy': 'same-origin', 'Cross-Origin-Embedder-Policy': 'require-corp', }, }, }); ...