-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.babel.js
More file actions
48 lines (46 loc) · 922 Bytes
/
webpack.config.babel.js
File metadata and controls
48 lines (46 loc) · 922 Bytes
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 path from 'path';
import webpack from 'webpack';
const devtool = 'inline-source-map';
const entry = [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
path.join(__dirname, 'src/index'),
];
const output = {
path: __dirname,
filename: 'bundle.js',
publicPath: '/',
};
const devServer = {
contentBase: path.resolve(__dirname, 'src'),
quiet: false,
noInfo: false,
stats: {
assets: false,
colors: true,
version: false,
hash: false,
timings: false,
chunks: false,
chunkModules: false,
},
};
const scriptLoader = {
loader: 'babel-loader',
include: path.resolve(__dirname, 'src'),
exclude: /node_modules/,
test: /\.jsx$|\.js$/,
};
const plugins = [new webpack.HotModuleReplacementPlugin()];
const resolve = {
extensions: ['.js', '.jsx'],
};
export default {
devtool,
entry,
output,
devServer,
module: { loaders: [scriptLoader] },
plugins,
resolve,
};