https://pacificquest.org
The same thing happens to all of our successfully published archives which makes me think this is a server issue that we can’t control.
We are also having build issues as detailed here: Sharp-linux-x64.node: undefined symbol: vips_fail_on_get_type ; but this not impacting our currently published site and the archives.
This started 2+ days ago.
Thanks for any information or assistance.
@islandcat It’s not a “server issue”, it’s a “client side issue”.
Check the developer console in your browser and you will see the errors being thrown:
You’ll need to fix the underlying issues to prevent the page from “disappearing”.
Based on the error message you provided, it looks like there might be an issue with the sharp
module that you are using in your code, particularly with the vips_fail_on_get_type
function call.
One potential solution is to try updating the sharp
module to the latest version. You can do this by running the following command in your project directory:
npm install sharp@latest
This should update the sharp
module to the latest version and may help resolve the issue.
If updating the sharp
module does not solve the problem, there may be other factors at play. I would recommend checking for any other error messages in your server logs or consulting the Netlify support team for further assistance.
Regarding the build issues you mentioned, it’s possible that they could be related to the sharp
module issue. However, without more information about the specific error messages you are seeing, it’s difficult to say for sure. I would recommend providing as much detail as possible about the errors when seeking help from the Netlify support team.
1 Like