two-cloudwebsite/next.config.js

8 lines
193 B
JavaScript

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