remove webpack manifest plugin
This commit is contained in:
20
package-lock.json
generated
20
package-lock.json
generated
@@ -63,8 +63,7 @@
|
|||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"webpack": "^5.105.4",
|
"webpack": "^5.105.4",
|
||||||
"webpack-cli": "^6.0.1",
|
"webpack-cli": "^6.0.1",
|
||||||
"webpack-dev-server": "^5.2.3",
|
"webpack-dev-server": "^5.2.3"
|
||||||
"webpack-manifest-plugin": "^6.0.1"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@adobe/css-tools": {
|
"node_modules/@adobe/css-tools": {
|
||||||
@@ -13604,23 +13603,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/webpack-manifest-plugin": {
|
|
||||||
"version": "6.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-6.0.1.tgz",
|
|
||||||
"integrity": "sha512-R0p/8/IJVY5hIhQtkeWUQugalVpIwojc09eb14zGq+oiZOCmN5paAz2NBJfd+6v9eBbxAS3YMjc2ov8UMlCDLQ==",
|
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"tapable": "^2.0.0",
|
|
||||||
"webpack-sources": "^3.3.3"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=20.19.0"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"webpack": "^5.75.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/webpack-merge": {
|
"node_modules/webpack-merge": {
|
||||||
"version": "6.0.1",
|
"version": "6.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz",
|
||||||
|
|||||||
@@ -76,8 +76,7 @@
|
|||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"webpack": "^5.105.4",
|
"webpack": "^5.105.4",
|
||||||
"webpack-cli": "^6.0.1",
|
"webpack-cli": "^6.0.1",
|
||||||
"webpack-dev-server": "^5.2.3",
|
"webpack-dev-server": "^5.2.3"
|
||||||
"webpack-manifest-plugin": "^6.0.1"
|
|
||||||
},
|
},
|
||||||
"babel": {
|
"babel": {
|
||||||
"presets": [
|
"presets": [
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import HtmlWebpackPlugin from "html-webpack-plugin";
|
|||||||
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
||||||
import ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin";
|
import ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin";
|
||||||
import ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
|
import ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
|
||||||
import {WebpackManifestPlugin} from "webpack-manifest-plugin";
|
|
||||||
import TerserPlugin from "terser-webpack-plugin";
|
import TerserPlugin from "terser-webpack-plugin";
|
||||||
import {Options as MDXOptions} from '@mdx-js/loader';
|
import {Options as MDXOptions} from '@mdx-js/loader';
|
||||||
import "webpack-dev-server";
|
import "webpack-dev-server";
|
||||||
@@ -142,10 +141,6 @@ const config: webpack.Configuration = {
|
|||||||
template: path.resolve(import.meta.dirname, "public/index.html"),
|
template: path.resolve(import.meta.dirname, "public/index.html"),
|
||||||
inject: true,
|
inject: true,
|
||||||
}),
|
}),
|
||||||
new WebpackManifestPlugin({
|
|
||||||
fileName: "manifest.json",
|
|
||||||
publicPath: "/"
|
|
||||||
}),
|
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
"process.env": JSON.stringify(process.env),
|
"process.env": JSON.stringify(process.env),
|
||||||
}),
|
}),
|
||||||
|
|||||||
Reference in New Issue
Block a user