fix unused dotenv plugin
Some checks failed
Go / build (1.21) (push) Successful in 1m7s
Go / build (1.22) (push) Successful in 1m5s
Node.js CI / build (push) Failing after 1m37s

This commit is contained in:
saji 2024-03-08 21:55:15 -06:00
parent 2dc5a0457b
commit 9e9081fa4a

View file

@ -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"},