我正在使用带有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
插件的情况下实现这一点,请帮忙。
答案 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'},
}
}
})
就是这样!