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

31 lines
787 B
JavaScript
Raw Normal View History

//need to convert to modern import method: https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
2023-04-17 17:05:35 -07:00
const nextConfig = {
// This is the base path for your application.
basePath: "",
2023-04-17 17:05:35 -07:00
// 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 {
'/': { page: '/' },
'/about': { page: '/about' },
'/contactus': { page: '/contactus' },
'/getinvolved': { page: '/getinvolved' },
'/hireus': { page: '/hireus' },
'/projects': { page: '/projects' },
};
},
//This disables image optimization.
images: {
unoptimized: true,
},
};
module.exports = nextConfig;