next.js/test/integration/auto-export-query-error/next.config.js
next.config.js10 lines203 B
module.exports = {
  output: 'export',
  exportPathMap() {
    return {
      '/': { page: '/hello', query: { first: 'second' } },
      '/ssr': { page: '/ssr', query: { another: 'one' } },
    }
  },
}
Quest for Codev2.0.0
/
SIGN IN