rsnext/examples/reproduction-template/next.config.mjs
Sam Ko 06ede796f2
chore(examples): update reproduction template (#66301)
## Why?

We get this error when we use `npx` to download the
reproduction-template.

![CleanShot 2024-05-28 at 17 25
40@2x](https://github.com/vercel/next.js/assets/28912696/a2f3c3ce-1a2c-4629-9914-9e88bb9c9632)

Updating the template should fix this error.
2024-05-28 18:11:47 -07:00

8 lines
122 B
JavaScript

/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
};
export default nextConfig;