How to disable AMP on a RSF project?

We have a client on React Storefront who is not ready to go-live with AMP enabled. How do we disable within React Storefront till the client is ready to activate in a future release?

Thanks

You can disable AMP by removing or commenting out the AMP config from the pages source code.

Near the bottom of each page, you should see a line which looks like this:

export const config = { amp: 'hybrid' }

Remove it or comment it out to disable AMP support for that page.

Awesome thanks for the response.