[![const path = require("path");
const webpack = require("webpack");
module.exports = {
mode: "development",
entry: "./src/app.js",
output: {
path: path.resolve(__dirname, "assets", "scripts"),
filename: "app.js",
publicPath: "./src",
},
devServer: {
hot: true,
host: "0.0.0.0",
port: 4000,
open: true,
},
module: {
rules: [{
test: /.css$/,
use: ["style-loader", "css-loader"],
}, ],
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
//..
}),
],
};]1]1
question from:
https://stackoverflow.com/questions/65837543/when-i-try-to-run-my-webpack-dev-server-it-gives-me-following-error-that-modul 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…