mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-04 07:40:51 +00:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
const withNextIntl = require('next-intl/plugin')();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// 使用新的 Turbopack 配置
|
|
turbopack: {
|
|
// 在这里添加 Turbopack 的配置选项
|
|
},
|
|
}
|
|
|
|
module.exports = withNextIntl(nextConfig);
|