judge4c/next.config.js

11 lines
265 B
JavaScript
Raw Normal View History

2025-06-17 11:42:00 +00:00
const withNextIntl = require('next-intl/plugin')();
/** @type {import('next').NextConfig} */
const nextConfig = {
// 使用新的 Turbopack 配置
turbopack: {
// 在这里添加 Turbopack 的配置选项
},
}
module.exports = withNextIntl(nextConfig);