tldraw/apps/docs/next.config.js
2023-04-25 12:01:25 +01:00

10 lines
204 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
scrollRestoration: true,
},
transpilePackages: ['@tldraw/utils'],
}
module.exports = nextConfig