This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
old-shiloh-website/next.config.js

18 lines
427 B
JavaScript

const nextConfig = {
// This is the base path for your application.
basePath: '/',
// This is the environment that your application is running in.
env: {
NODE_ENV: 'production',
},
// This is the list of pages that should be exported when you run the `next export` command.
exportPathMap: async function () {
return {
'/pages/*': { page: './pages/*' },
};
},
};
module.exports = nextConfig;