Removed image optimization error. will update to
latest import method later.
This commit is contained in:
parent
0ad0a18f06
commit
d29c9a3438
@ -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,
|
||||
},
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user