39 строки
768 B
JavaScript
39 строки
768 B
JavaScript
/*!
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
|
|
const CopyPlugin = require("copy-webpack-plugin");
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
module.exports = (env) => {
|
|
const htmlTemplate = "./src/index.html";
|
|
const plugins = [
|
|
new HtmlWebpackPlugin({ template: htmlTemplate }),
|
|
new CopyPlugin({
|
|
patterns: [
|
|
// Copy assets from `public`
|
|
{ from: ".", to: ".", context: "public" },
|
|
],
|
|
}),
|
|
];
|
|
|
|
const mode = env && env.prod ? "production" : "development";
|
|
|
|
return {
|
|
devtool: "inline-source-map",
|
|
entry: {
|
|
app: "./src/app.js",
|
|
},
|
|
mode,
|
|
output: {
|
|
filename: "[name].[contenthash].js",
|
|
clean: true,
|
|
},
|
|
plugins,
|
|
devServer: {
|
|
open: false,
|
|
},
|
|
};
|
|
};
|