Showing blank page

published my site successfully after series of issues but now it shows a blank page. I honestly don’t know how to debug this and i really need help please.
This is my blank page Netlify website: ducklaroid.netlify.app

I should quickly add also that it works fine on localhost.

thank you.

You deleted the site, recreated it, and now have no successful deploys. Also, in order to assist you, we need to see the code for the site and you have not shared the source code.

The most recent build failed because code was detected in the files to be published that appears to be an access token. The build logs also contain a link to the page below for instructions to workaround this if including this token in the site’s javascript files is intentional:

If there are questions after reading that, please let us know.

github-repo:gentech773-alt/Ducklaroid
This is my blank page Netlify website: ducklaroid.netlify.app
Diagnosis:

  • Netlify terminates the build because its secrets scanner detected secret-looking values in the repository/build output (#92-96). No other build step ran after the scan, so the failure is entirely due to those flagged values.

Solution:

  1. Run Netlify’s scanner locally (npx netlify secrets:scan) or inspect the paths reported in the Netlify UI to identify which committed files contain the flagged values.

  2. Remove those secrets from the repo: move them into environment variables (e.g., reference process.env.API_KEY instead of hard-coding the key) or load them from an uncommitted file such as .env.

  3. After removing the sensitive values, redeploy. If any flagged value is a false positive, first confirm it is truly safe to expose; only then consider opting out via the documented variables (SECRETS_SCAN_SMART_DETECTION_OMIT_VALUES or related settings).

Hi, @metadawn_studio. Please do not make new posts for questions about the same site. Please keep all posts in the existing thread.

How to share the source code?