I am trying to use a sefaria project : https://github.com/Sefaria/Sefaria-Project
i have ran the project locally and when I tried to change the logo and some text in Header.jsx under static/js folder, desired result is not showing on browser. I am guessing its because of django caching that they put in place. If you guys have any idea, how to figure it, plz let me know.
const headerContent = (
<>
<div className="headerNavSection">
{ Sefaria._siteSettings.TORAH_SPECIFIC ?
<a className="home" href="/" >{logo}</a> : null }
<a href="/texts" className="textLink"><InterfaceText context="Header">Textss</InterfaceText></a>
<a href="/topics" className="textLink"><InterfaceText>Topicss</InterfaceText></a>
<a href="/community" className="textLink"><InterfaceText>Communityss</InterfaceText></a>
<DonateLink classes={"textLink donate"} source={"Header"}><InterfaceText>Donate</InterfaceText></DonateLink>
</div>