From 19e19ca052e63a95bb1268512be70e4062e707bb Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 21 Feb 2025 21:22:40 +0100 Subject: [PATCH] assets: remove bootstrap reference --- src/routes/assets.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/routes/assets.ts b/src/routes/assets.ts index b0a8ed354..796491e13 100644 --- a/src/routes/assets.ts +++ b/src/routes/assets.ts @@ -95,8 +95,6 @@ async function register(app: express.Application) { app.use(`/${assetPath}/node_modules/jquery.fancytree/dist/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/jquery.fancytree/dist/"))); - app.use(`/${assetPath}/node_modules/bootstrap/dist/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/bootstrap/dist/"))); - // CodeMirror app.use(`/${assetPath}/node_modules/codemirror/lib/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/codemirror/lib/"))); app.use(`/${assetPath}/node_modules/codemirror/addon/`, persistentCacheStatic(path.join(srcRoot, "..", "node_modules/codemirror/addon/")));