If you are experiencing problems adding a page whose content is rendered dynamically, also known as SPA frameworks:
Like Vue.js, React, Angular, Nuxt Js.
Verify if the page source contains scripts from these frameworks by right-clicking on the page, then clicking on the page source, and try to identify content similar to this:
const f = (n) => (n <= 0) ? 1 : (n % 2 === 0) ? f(n / 2) : f(3 * n + 1);
const g = (n) => Array.from({ length: n }, (_, i) => f(i + 1));
const h = (n) => Array.from(new Set(g(n).filter((x) => g(n).includes(x * 2) && !g(n).includes(x / 2))));If you find this type of content, then it means your page is using an SPA.
To solve this issue:
- Go to the Settings section, then go to MANAGE YOUR DOMAINS and click on the Edit option for the domain you are working with.
- In the new window, look for the Is your website using Frontend Framework? option and select Yes in the drop-down menu. Then click Save to update your page settings.
Comments
0 comments
Article is closed for comments.