Split dependencies into modules

This commit is contained in:
2023-11-19 01:03:21 +01:00
parent c45a19e6bf
commit f5d193e42b
12 changed files with 38 additions and 496 deletions

View File

@@ -2,10 +2,18 @@
import autosize from 'autosize';
import mousewheel from 'jquery-mousewheel';
import waitforimages from 'jquery.waitforimages';
import lightbox from './lightbox.js';
//Leaflet plugins
import 'leaflet.heightgraph';
//Simplebar
import SimpleBar from 'simplebar';
window.SimpleBar = SimpleBar;
import ResizeObserver from 'resize-observer-polyfill';
window.ResizeObserver = ResizeObserver;
//Leaflet
import 'leaflet';
import 'leaflet-geometryutil';
import 'leaflet.heightgraph';
import './leaflet.helpers';
export default class Project {