如何使用多种配置/插件配置nextjs

时间:2019-01-15 02:21:22

标签: reactjs antd next.js

我正在使用带有with-antd样板的Nextjs,它带有一个预先配置的next.config.js文件。

看起来像这样

/* eslint-disable */
const withCss = require('@zeit/next-css')

// fix: prevents error when .css files are required by node
if (typeof require !== 'undefined') {
  require.extensions['.css'] = (file) => {}
}

module.exports = withCss()

我要编辑此配置文件并添加exportPathMap之类的配置。

赞:

module.exports = {
  exportPathMap: function () {
    return {
      '/': { page: '/' },
      '/about': { page: '/about' },
      '/p/hello-nextjs': { page: '/post', query: { title: 'Hello Next.js' } },
      '/p/learn-nextjs': { page: '/post', query: { title: 'Learn Next.js is awesome' } },
      '/p/deploy-nextjs': { page: '/post', query: { title: 'Deploy apps with Zeit' } }
    }
  }
}

但是我不知道如何在不破坏withCss插件的情况下实现这一点,请帮忙。

1 个答案:

答案 0 :(得分:0)

通过意识到下一个插件(例如我正在使用的@zeit/next-css )解决了这一问题,期望有更多下一个配置作为插件中的对象传递。

来自@zeit/next-css插件的摘录。

module.exports = (nextConfig = {}) => {
  return Object.assign({}, nextConfig, {
    webpack(config, options) {
      if (!options.defaultLoaders) {
        throw new Error(
          'This plugin is not compatible with Next.js versions below 5.0.0 https://err.sh/next-plugins/upgrade'
        )
}

因此,我将exportPathMap固定为withCss内的一个对象。

module.exports = withCss({
    exportPathMap: function() {
        return {
            '/': {page: '/'},
            '/sevices': {page: '/services'},
            '/about': {page: '/about'},
            '/contacts': {page: '/contacts'},
        }
    }
})

就是这样!