mattupstate/nextjs-pipeline-example

View on GitHub
src/next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  exportPathMap: async function (defaultPathMap) {
    return {
      '/': { page: '/' },
      '/about': { page: '/about' }
    }
  }
}