2021-08-11 22:15:23 +00:00
|
|
|
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)$/,
|
2021-09-26 22:36:27 +00:00
|
|
|
type: 'asset/resource',
|
|
|
|
generator: {
|
|
|
|
filename: 'font/[name][ext]',
|
2021-08-11 22:15:23 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
2021-09-26 22:36:27 +00:00
|
|
|
type: 'asset/resource',
|
|
|
|
generator: {
|
|
|
|
filename: 'image/[name][ext]',
|
|
|
|
}
|
2021-08-11 22:15:23 +00:00
|
|
|
}]
|
|
|
|
},
|
|
|
|
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'
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
]
|
|
|
|
};
|