I've multiples pages and I would like to load different CSS files for each page.
Something like this:
status.html
<template>
<require from="./css/modules/status.css"></require>
</template>
cms.html
<template>
<require from="./css/modules/cms.css"></require>
</template>
But this is not working properly. On status page load I only have the status.css file, but if I open the cms page I will have the status.css and it will load cms.css.