From 9e9081fa4a420a6568a8f5be0b939351b15700b2 Mon Sep 17 00:00:00 2001 From: saji Date: Fri, 8 Mar 2024 21:55:15 -0600 Subject: [PATCH] fix unused dotenv plugin --- web/webpack.common.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/webpack.common.js b/web/webpack.common.js index c3e0749..59f8ec8 100644 --- a/web/webpack.common.js +++ b/web/webpack.common.js @@ -2,7 +2,6 @@ import path from 'path'; import {fileURLToPath} from 'url'; import HtmlWebpackPlugin from 'html-webpack-plugin'; import CopyPlugin from 'copy-webpack-plugin'; -import DotenvWebpackPlugin from 'dotenv-webpack'; const config = { entry: './src/app.ts', @@ -20,7 +19,6 @@ const config = { template: 'src/index.html', filename: 'index.html', }), - new DotenvWebpackPlugin(), new CopyPlugin({ patterns: [ { from: "**/*", to: "openmct/", context: "node_modules/openmct/dist"},