project/webpack.config.js
2025-03-22 13:14:28 +03:00

24 lines
619 B
JavaScript

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require("copy-webpack-plugin");
module.exports = {
entry: './src/index.js',
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist'),
clean: true
},
module: {},
plugins: [
new HtmlWebpackPlugin({
template: "./src/index.html"
}),
new CopyPlugin({
patterns: [
{from: "./src/style.css", to: "style.css"},
{from: "./src/images", to: "images"},
],
})
]
};