I understand your situation, but it's important to note that manually modifying the content of static files after they've been generated by Next.js is not recommended. This is because Next.js uses a process called "hydration" to make your application interactive. If the content of the static files doesn't match what Next.js expects based on the original source code, it can cause hydration errors.
Hydration errors occur when the server-rendered HTML does not match the initial UI rendered on the client-side. This mismatch can lead to unexpected behavior in your application. Suppressing the warnings won't fix the underlying issue, and might lead to other problems down the line.
Unfortunately, there's no built-in way in Next.js to remove the UI check or suppress hydration errors at a global level. The suppressHydrationWarning prop can be used to suppress hydration warnings, but it only works one level deep and only with text content.
If you need to make changes to the content of your static files, the recommended approach is to make the changes in the source code and then rebuild and re-export the static files. If this is not an option, you might need to consider other solutions, such as using a content management system (CMS) or a serverless function to dynamically update the content.
Remember, manually modifying the static files can lead to unexpected behavior and is generally not a good practice. It's always better to make changes in a way that's compatible with the way your application is built and served.
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: