-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.common.js
More file actions
48 lines (46 loc) · 1.06 KB
/
Copy pathwebpack.common.js
File metadata and controls
48 lines (46 loc) · 1.06 KB
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
import { resolve } from 'path';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export const entry = {
app: resolve(__dirname, 'src/scripts/index.js'),
};
export const output = {
filename: '[name].bundle.js',
path: resolve(__dirname, 'dist'),
clean: true,
};
export const module = {
rules: [
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
],
},
],
};
export const plugins = [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
filename: 'index.html',
template: resolve(__dirname, 'src/index.html'),
}),
new CopyWebpackPlugin({
patterns: [
{
from: resolve(__dirname, 'src/public/'),
to: resolve(__dirname, 'dist/'),
},
],
}),
];