-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathwebpack.config.pages.js
72 lines (67 loc) · 1.48 KB
/
webpack.config.pages.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
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
entry: {
main: './src/pages/index.js',
},
output: {
path: path.join(__dirname, 'pages'),
filename: '[name].js',
},
resolve: {
extensions: ['.js', '.jsx'],
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.css$/,
exclude: /node_modules/,
loaders: ['css-hot-loader', MiniCssExtractPlugin.loader, {
loader: 'css-loader',
options: {
importLoaders: true,
modules: {
localIdentName: '[name]__[local]__[hash:base64:5]',
},
},
}, 'postcss-loader'],
},
{
test: /\.css$/,
include: /node_modules/,
loaders: [MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
exclude: /(node_modules|bower_components)/,
loader: 'url-loader?limit=10000&mimetype=image/svg+xml',
},
],
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: './src/pages/template.html',
}),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[name].css',
}),
],
devServer: {
contentBase: './public',
hot: true,
port: 8888,
host: 'localhost',
},
devtool: 'source-map',
};