8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// 他のカスタム設定をここに追加
|
|
};
|
|
|
|
export default nextConfig;
|