Level 58
Yes, you can still hide the data-page attribute even if you're not using SSR. You can do this by adding a CSS rule to hide the attribute. Here's an example:
[data-page] {
display: none;
}
This will hide any element that has a data-page attribute. You can add this rule to your CSS file or add it inline to a specific element.