const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const CopyPlugin = require('copy-webpack-plugin'); module.exports = { entry: { index: path.resolve(__dirname, 'src', 'index.js') }, output: { filename: '[name].[contenthash].js', path: path.resolve(__dirname, 'dist/web'), clean: true }, module: { rules: [{ test: /\.css$/i, use: ['style-loader', 'css-loader'] }, { test: /\.(ttf|woff|woff2)$/, use: { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: 'font/' } } }, { test: /\.(jpe?g|png|gif|svg)$/i, use: [{ loader: 'file-loader', }] }] }, plugins: [ new HtmlWebpackPlugin({ template: './src/index.html' }), new CopyPlugin({ patterns: [{ from: './src/manifest.json', to: './manifest.json' }, { from: './src/icon/', to: './icon/' }, { from: './src/initialBackground.js', to: './initialBackground.js' }] }) ] };