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

17 lines
396 B
JavaScript

const nextConfig = {
// This is the base path for your application.
basePath: "",
// This is the environment that your application is running in.
env: {},
// 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;