refactor: restructure next.config.js for clarity and organization

This commit is contained in:
onedooneget 2025-07-16 17:49:46 +08:00
parent b523c66703
commit 132312a9f7

View File

@ -1,4 +1,7 @@
// next.config.js
/** @type {import('next').NextConfig} */
module.exports = {
const nextConfig = {
distDir: 'build', // 改变默认的 .next 目录
reactStrictMode: true,
};
};
module.exports = nextConfig;