-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Labels
Description
This can hook in to the existing extra_css_urls and extra_js_urls mechanism:
Lines 304 to 305 in b2955d9
| 'extra_css_urls': self.ds.extra_css_urls(), | |
| 'extra_js_urls': self.ds.extra_js_urls(), |
The plugins should be able to bundle their own assets though, so it will also have to integrate with the /static/ static mounts mechanism somehow:
Lines 1255 to 1257 in b2955d9
| app.static('/-/static/', str(app_root / 'datasette' / 'static')) | |
| for path, dirname in self.static_mounts: | |
| app.static(path, dirname) |
Refs #14
Reactions are currently unavailable