-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.babel.js
63 lines (61 loc) · 1.12 KB
/
webpack.config.babel.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
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 cssLoaders = {
loaders: ['style-loader', 'css-loader'],
include: __dirname,
test: /\.css$|\.scss$/,
};
const fontLoader = {
loaders: ['url-loader'],
test: /\.png$/,
};
const plugins = [new webpack.HotModuleReplacementPlugin()];
const resolve = {
extensions: ['.js', '.jsx', '.css'],
};
export default {
devtool,
entry,
output,
devServer,
module: {
loaders: [
scriptLoader,
cssLoaders,
fontLoader,
],
},
plugins,
resolve,
};