next.config.js上的next.js多种配置

问题描述

在尝试配置next-i18next软件包(版本6)时,我的next.js配置文件出现问题,并且还具有用于音频的webpack配置和用于图像的插件。在升级之前,一切都很好,但是现在没有加载我设置的defaultLanguage。

我的next.config.js看起来像这样:

const withImages = require('next-images');

const { nextI18NextRewrites } = require('next-i18next/rewrites');
const localeSubpaths = { en: 'en' };

module.exports = withImages({
 webpack(config,options) {
   const { isServer } = options;
   config.module.rules.push({
     test: /\.(ogg|mp3|wav|mpe?g)$/i,exclude: config.exclude,use: [
       {
         loader: require.resolve('url-loader'),options: {
           limit: config.inlineImageLimit,fallback: require.resolve('file-loader'),publicPath: `${config.assetPrefix}/_next/static/images/`,outputPath: `${isServer ? '../' : ''}static/images/`,name: '[name]-[hash].[ext]',esModule: config.esModule || false,},],});

   return config;
 },rewrites: async () => nextI18NextRewrites(localeSubpaths),publicRuntimeConfig: {
   localeSubpaths,});

任何帮助将不胜感激。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)