From df6c6647c70b8ed00b373cfa33fac012b76385e1 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 28 Mar 2025 22:40:19 +0200 Subject: [PATCH] chore(deps): remove leaflet from dist --- src/routes/assets.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/routes/assets.ts b/src/routes/assets.ts index 6117d4bab..70cd4de8f 100644 --- a/src/routes/assets.ts +++ b/src/routes/assets.ts @@ -87,8 +87,6 @@ async function register(app: express.Application) { app.use(`/${assetPath}/node_modules/codemirror/keymap/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/codemirror/keymap/"))); app.use(`/${assetPath}/node_modules/@highlightjs/cdn-assets/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/@highlightjs/cdn-assets/"))); - - app.use(`/${assetPath}/node_modules/leaflet/dist/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/leaflet/dist/"))); } export default {