]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
avoid direct references to node_modules
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 31 Jan 2021 17:34:17 +0000 (18:34 +0100)
committermtmail <mtmail@gmx.net>
Tue, 2 Feb 2021 00:09:04 +0000 (01:09 +0100)
Rollup will infer the correct directory for external
resources.

src/App.svelte

index 839c1356431b6f717c9fcd5ad445076b124edae7..7188333c1961444b6b369f816bb793da7cb4d2dc 100644 (file)
@@ -1,7 +1,7 @@
 <script>
   import * as jquery from 'jquery';
-  import '../node_modules/bootstrap/dist/css/bootstrap.css';
-  import '../node_modules/bootstrap/dist/js/bootstrap.bundle.js';
+  import 'bootstrap/dist/css/bootstrap.css';
+  import 'bootstrap/dist/js/bootstrap.bundle.js';
 
   import Header from './components/Header.svelte';
   import Footer from './components/Footer.svelte';