I need my application to work 100% off the grid, therefore i cannot use the jsdelivr for ionic core as follows
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css"/>
I added the ionic.bundle.css to the angular.json scripts styles section but when i add the ionic.esm.js and ionic.js the entire app breaks. What is the best way to reference these files for offline use?
1 post - 1 participant