How to change webflow-project.js file based on CMS page

I have the following pages:

Home Page
About Page
CMS Page A
CMS Page B

All pages are currently servicing https://uploads-ssl.webflow.com/webflow-project.js

webflow-project.js contains all my interactions data.

For example Interactions data is webflow.js contains:

  • “config”:{“delay”:1500,

I must get the following
Home Page - “config”:{“delay”:1500,

About Page - “config”:{“delay”:1500,

CMS Page A - “config”:{“delay”:2500,

CMS Page B - “config”:{“delay”:3500,

to load within webflow-project.js

How to change a webflow-project.js variable based on CMS page?