I want to reference some additional css and js files from within my scripted dashboards (for a custom html panel at the top of our page) but can’t seem to find the proper location to place these files (and reference them correctly).
My most recent attempt was to place the files in:
/Users/me/Documents/dev/grafana-dev/src/github.com/grafana/grafana/public/app/shared/css
/Users/me/Documents/dev/grafana-dev/src/github.com/grafana/grafana/public/app/shared/js
And reference them in my html as:
<script type="text/javascript" src="app/shared/bootstrap-multiselect.js"></script>
<link rel="stylesheet" href="app/shared/bootstrap-multiselect.css" type="text/css"/>
But this just throws net::ERROR_ABORTED and 404s. What’s the proper way?