This repository was archived by the owner on Apr 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
executable file
·63 lines (59 loc) · 1.43 KB
/
webpack.config.js
File metadata and controls
executable file
·63 lines (59 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const detect = require('detect-port');
const portfinder = require('portfinder');
const DEFAULT_PORT = 3000;
const config = port => ({
devtool: 'cheap-module-source-map',
entry: {
app: './src/index'
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.[hash].js',
publicPath: '/'
},
devServer: {
port,
hot: true,
historyApiFallback: true,
stats: 'errors-only',
clientLogLevel: 'error'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('development')
}
}),
new HtmlWebpackPlugin({
template: './src/index.html',
filename: 'index.html'
})
],
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/
},
{
test: /\.scss$/,
use: [
'style-loader?sourceMap',
'css-loader?sourceMap&modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]!sass-loader'
]
}
]
},
});
module.exports = detect(DEFAULT_PORT).then(port => {
if (port === DEFAULT_PORT) {
return config(DEFAULT_PORT);
}
return portfinder.getPortPromise().then(port => config(port));
});