| 146 | // --------------------------------------------------------------------------- |
| 147 | |
| 148 | function injectPluginAssets(manifest) { |
| 149 | if (manifest.css) { |
| 150 | const link = document.createElement("link"); |
| 151 | link.rel = "stylesheet"; |
| 152 | link.href = `/dashboard-plugins/${manifest.name}/${manifest.css}`; |
| 153 | document.head.appendChild(link); |
| 154 | } |
| 155 | const script = document.createElement("script"); |
| 156 | script.src = `/dashboard-plugins/${manifest.name}/${manifest.entry || "dist/index.js"}`; |
| 157 | script.async = false; |
| 158 | document.body.appendChild(script); |
| 159 | } |
| 160 | |
| 161 | // --------------------------------------------------------------------------- |
| 162 | // Favicon (SVG data URL — trivially embeddable, no extra file) |