Setup Flip using CDN or local files
masterTo use Flip without a module bundler, include the CSS in your <head> and the JavaScript before the closing </body> tag. You can host the files locally or use a CDN like unpkg.
<!-- Using CDN -->
<link href="https://unpkg.com/@pqina/flip/dist/flip.min.css" rel="stylesheet">
<script src="https://unpkg.com/@pqina/flip/dist/flip.min.js"></script>
<!-- Or using local files (ensure paths match your directory structure) -->
<link href="/flip/flip.min.css" rel="stylesheet">
<script src="/flip/flip.min.js"></script>