-
Notifications
You must be signed in to change notification settings - Fork 9
/
webpack.config.js
107 lines (103 loc) · 2.54 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const fs = require('fs');
// Helper function to check if directory exists and has files
const hasFiles = (dir) => {
try {
return fs.existsSync(dir) && fs.readdirSync(dir).length > 0;
} catch (e) {
return false;
}
};
module.exports = (env) => ({
mode: 'production',
entry: {
popup: './src/popup.js',
content: './src/content.js',
background: './src/background.js',
},
output: {
path: path.resolve(__dirname, env.firefox ? 'dist/firefox' : 'dist/chrome'),
filename: '[name].js',
clean: true
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader'
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext]'
}
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
generator: {
filename: 'assets/[name][ext]'
}
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/popup.html',
filename: 'popup.html',
chunks: ['popup']
}),
new MiniCssExtractPlugin({
filename: 'styles.css'
}),
new CopyPlugin({
patterns: [
// Always copy browser-polyfill for Firefox
env.firefox ? {
from: 'node_modules/webextension-polyfill/dist/browser-polyfill.min.js',
to: 'browser-polyfill.js'
} : { from: 'src/empty.js', to: 'browser-polyfill.js' },
// Copy manifest based on target browser
{
from: env.firefox ? 'manifest.firefox.json' : 'manifest.json',
to: 'manifest.json'
},
// Copy other assets if they exist
...(hasFiles(path.join(__dirname, 'src/assets')) ? [{
from: 'src/assets',
to: 'assets',
noErrorOnMissing: true
}] : [])
].filter(Boolean)
})
],
resolve: {
extensions: ['.js', '.css']
},
optimization: {
runtimeChunk: false,
splitChunks: false
},
performance: {
hints: false
},
cache: false
});