Content of a particular store disappearing after using my app extension with cdn links

Content of a particular store disappearing after using my app extension with cdn links

khaledmomen
Shopify Partner
1 0 0

 

 

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Plugin Name</title>
    <!-- Correct reference to the CSS file -->
    <link rel="stylesheet" href="{{ 'jawebmain.css' | asset_url }}">
    {% schema %}
          {
        "name": "Jaweb Chatbot Plugin",
        "target": "body",
        "settings": []
      }
    {% endschema %}
  </head>
  <body>
    <section>
      <div id="chat-root"><!-- Your chat plugin will be injected here --></div>
    </section>

    <!-- Correct reference to the JS file -->
    <script defer src="{{ 'jawebmain.js' | asset_url }}"></script>

 

 

Replies 0 (0)