代码拉取完成,页面将自动刷新
// next.config.js
const path = require('path');
require('dotenv').config();
const { loadCustomBuildParams } = require('./next-utils.config')
const { esmExternals = false, tsconfigPath } = loadCustomBuildParams()
const { i18n } = require('./next-i18next.config');
// const nextauthConfig = require('./nextauth.config.js');
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
i18n,
// nextauthConfig,
experimental: {
esmExternals,
},
trailingSlash: true,
reactStrictMode: true,
typescript: {
tsconfigPath,
},
webpack: (config, { isServer }) => {
if (!isServer) {
// 让 next-i18next 的客户端部分正常工作
config.resolve.fallback.intl_pluralrules = require.resolve('intl-pluralrules')
}
return config;
},
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
module: {
rules: [
{
test: /\.md$/,
use: 'raw-loader',
},
],
},
}
module.exports = nextConfig;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。