mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-08 01:10:29 +00:00
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|