From a2e90b3a3817f913b2be707ee09e03ad6f95f178 Mon Sep 17 00:00:00 2001 From: sakshigupta12feb Date: Tue, 11 Nov 2025 20:08:45 +0530 Subject: [PATCH] Removed unused old code from DE (#2251) Co-authored-by: Sakshi Gupta --- src/NotebookViewer/notebookViewer.html | 13 ------------- webpack.config.js | 6 ------ 2 files changed, 19 deletions(-) delete mode 100644 src/NotebookViewer/notebookViewer.html diff --git a/src/NotebookViewer/notebookViewer.html b/src/NotebookViewer/notebookViewer.html deleted file mode 100644 index da0043ce7..000000000 --- a/src/NotebookViewer/notebookViewer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - Notebook Viewer - - - - -
- - diff --git a/webpack.config.js b/webpack.config.js index 38ace4c1f..32760594d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -113,7 +113,6 @@ module.exports = function (_env = {}, argv = {}) { hostedExplorer: "./src/HostedExplorer.tsx", terminal: "./src/Terminal/index.ts", cellOutputViewer: "./src/CellOutputViewer/CellOutputViewer.tsx", - notebookViewer: "./src/NotebookViewer/NotebookViewer.tsx", galleryViewer: "./src/GalleryViewer/GalleryViewer.tsx", selfServe: "./src/SelfServe/SelfServe.tsx", connectToGitHub: "./src/GitHub/GitHubConnector.ts", @@ -151,11 +150,6 @@ module.exports = function (_env = {}, argv = {}) { template: "src/CellOutputViewer/cellOutputViewer.html", chunks: ["cellOutputViewer"], }), - new HtmlWebpackPlugin({ - filename: "notebookViewer.html", - template: "src/NotebookViewer/notebookViewer.html", - chunks: ["notebookViewer"], - }), new HtmlWebpackPlugin({ filename: "gallery.html", template: "src/GalleryViewer/galleryViewer.html",