I’m sure everyone’s tired of seeing these posts, but I’ve read through all the relevant posts that pop up on the side as I was typing this up. So here goes …
My config file includes the resources per below code:
lovelace:
mode: yaml
resources:
- url: /hacsfiles/secondaryinfo-entity-row/secondaryinfo-entity-row.js
type: module
- url: /hacsfiles/lovelace-card-tools/card-tools.js
type: module
- url: /hacsfiles/mini-graph-card/mini-graph-card-bundle.js
type: module
- url: /hacsfiles/sidebar-card/sidebar-card.js
type: module
- url: /hacsfiles/garbage-collection-card/garbage-collection-card.js
type: module
...
secondaryinfo-entity-row works correctly (but it’s not a custom “card”)
sidebar-card works correctly (but it’s not a custom “card”)
garbage-collection-card does not work
mini-graph-card does not work
As an example, the mini-graph-card code below will just give me a blank space on the page. Doing this in yaml or using a manual card does the same thing.
- type: 'custom:mini-graph-card'
name: TEST
entities:
- sensor.processor_use
- sensor.disk_use
- sensor.memory_use
- sensor.swap_use
HACS shows no ‘red rings’ around the custom items.
the www/community/ folder has all the correct custom items and their associated content.
when i browse to http://[ip]:[port]/local/community/mini-graph-card/mini-graph-card-bundle.js, i am able to get to the file.
I’ve restarted and cleared cache numerous times.
What else am I missing?