doc: added example for frontend_css
Massimo Melina committed
Dec 13, 2023 at 11:00 UTC
02f9c5be754c9b798cc50d3dc7a948beb5809a2b
1 file changed
+1
-1
dev-plugins.md
+1
-1
@@ -73,7 +73,7 @@ used must be strictly JSON (thus, no single quotes, only double quotes for strin
73
74
- `init` described in the previous section.
75
- `frontend_css: string | string[]` path to one or more css files that you want the frontend to load. These are to be placed in the `public` folder (refer below).
76
- You can also include external files, by entering a full URL.
76
+ You can also include external files, by entering a full URL. Multiple files can be specified as `['file1.css', 'file2.css']`.
77
- `frontend_js: string | string[]` path to one or more js files that you want the frontend to load. These are to be placed in the `public` folder (refer below).
78
You can also include external files, by entering a full URL.
79
- `middleware: (Context) => void | true | function` a function that will be used as a middleware: use this to interfere with http activity.