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 = {
|
const nextConfig = {
|
||||||
|
|
||||||
// This is the base path for your application.
|
// This is the base path for your application.
|
||||||
basePath: "",
|
basePath: "",
|
||||||
|
|
||||||
@ -9,7 +12,13 @@ const nextConfig = {
|
|||||||
exportPathMap: async function () {
|
exportPathMap: async function () {
|
||||||
return {
|
return {
|
||||||
"/pages/*": { page: "./pages/*" },
|
"/pages/*": { page: "./pages/*" },
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
},
|
||||||
|
//This disables image optimization.
|
||||||
|
images: {
|
||||||
|
unoptimized: true,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user