Removed image optimization error. will update to

latest import method later.
This commit is contained in:
Caretaker0699 2023-05-15 16:23:13 -07:00
parent 0ad0a18f06
commit d29c9a3438

View File

@ -1,4 +1,7 @@
//need to convert to modern import method: https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
const nextConfig = {
// This is the base path for your application.
basePath: "",
@ -9,7 +12,13 @@ const nextConfig = {
exportPathMap: async function () {
return {
"/pages/*": { page: "./pages/*" },
};
},
//This disables image optimization.
images: {
unoptimized: true,
},
};