I am trying to add a custom css to my custom page,
I added the following code to hooks.py
app_include_js = [
"assets/js/fpo.min.js"
]
app_include_css = [
"assets/css/fpo.css"
]
web_include_js = [
"assets/js/fpo-web.min.js"
]
web_include_css = [
"assets/css/fpo.css"
]
The fpo,min.js file is getting picked up fine, but fpo.css is not getting picked up.
Is there a known issue?
I see that erpnext.css is getting picked up. It is part of erpnext\hooks.py
app_include_js = "assets/js/erpnext.min.js"
app_include_css = "assets/css/erpnext.css"