Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 432 Bytes

parcel.md

File metadata and controls

21 lines (16 loc) · 432 Bytes

Parcel Guide

As a script tag

Add the script tag to your index.html

Refer to the CDN Guide for the available URLs.

<!doctype html>
<html lang="en">
  <head>
    <script src="https://unpkg.com/react-scan/dist/auto.global.js"></script>

    <!-- rest of your scripts go under -->
  </head>
  <body>
    <!-- ... -->
  </body>
</html>