I’m new to Shopify app development, and my project was running perfectly fine until today. However, after restarting the project today (npm run dev), it started throwing errors, even after all the changes I made. I tried deleting node_modules.shopify.react-router and reinstalling it with npm, but the problem persists.
shopify-cli 3.85.5
node 20.19.4
npm 10.8.2
hurry-timer.min.js
(function (){console.log('hello extension')})();
app-block.liquid
<div data-hurry-timer-container>
123
</div>
{% schema %}
{
"name": "Countdown timer",
"target": "section",
"javascript": "hurry-timer.min.js",
"settings": []
}
{% endschema %}
app-embed.liquid
<script type="text/javascript">
</script>
{% schema %}
{
"name": "Countdown timer",
"target": "body",
"javascript": "hurry-timer.min.js",
"settings": []
}
{% endschema %}
