Files
website/next.config.mjs

13 lines
248 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverComponentsExternalPackages: [
'next-mdx-remote',
'@retorquere/bibtex-parser',
],
},
};
export default nextConfig;