Files
kener/docs/custom-js-css-guide.md
T
Raj Nandan Sharma 0f5dd0fd31 feat: added analytics
2024-11-14 23:58:22 +05:30

698 B

title, description
title description
Custom JS and CSS Guide | Kener Custom JS and CSS Guide for Kener

Here is a guide to add custom JS and CSS to your Kener instance.

Adding Custom JS

Add your custom JS to static/ file. And in the src/app.html file, add the following line:

<script src="/your-custom-js-file.js"></script>

Adding Custom CSS

Add your custom CSS to static/ file. And in the src/app.html file, add the following line:

<link rel="stylesheet" href="/your-custom-css-file.css" />

Do not forget to add the base path if you are using a subpath. For example, if you are using a subpath /kener, then the path should be /kener/your-custom-js-file.js.