diff --git a/example-monorepos/blank/apps/next/next.config.js b/example-monorepos/blank/apps/next/next.config.js index faa4ed0a..453f8eb7 100644 --- a/example-monorepos/blank/apps/next/next.config.js +++ b/example-monorepos/blank/apps/next/next.config.js @@ -23,7 +23,7 @@ const nextConfig = { disableStaticImages: true, }, experimental: { - forceSwcTransforms: false, // set this to true to use reanimated + swc experimentally + forceSwcTransforms: true, swcPlugins: [[require.resolve('./plugins/swc_plugin_reanimated.wasm')]], }, } diff --git a/example-monorepos/with-tailwind/apps/next/next.config.js b/example-monorepos/with-tailwind/apps/next/next.config.js index 514cc7e8..0640e368 100644 --- a/example-monorepos/with-tailwind/apps/next/next.config.js +++ b/example-monorepos/with-tailwind/apps/next/next.config.js @@ -19,7 +19,7 @@ const nextConfig = { reactStrictMode: false, webpack5: true, experimental: { - forceSwcTransforms: false, // set this to true to use reanimated + swc experimentally + forceSwcTransforms: true, swcPlugins: [[require.resolve('./plugins/swc_plugin_reanimated.wasm')]], }, }