diff options
Diffstat (limited to 'apps/web/next.config.ts')
| -rw-r--r-- | apps/web/next.config.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts index 139923e8..17f8dc4c 100644 --- a/apps/web/next.config.ts +++ b/apps/web/next.config.ts @@ -2,6 +2,19 @@ import { withSentryConfig } from "@sentry/nextjs" import type { NextConfig } from "next" const nextConfig: NextConfig = { + transpilePackages: [ + "@tiptap/core", + "@tiptap/react", + "@tiptap/pm", + "@tiptap/starter-kit", + "@tiptap/extension-placeholder", + "@tiptap/extension-link", + "@tiptap/extension-image", + "@tiptap/extension-task-list", + "@tiptap/extension-task-item", + "@tiptap/suggestion", + "@tiptap/markdown", + ], experimental: { viewTransition: true, turbopackFileSystemCacheForDev: true, |