-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathwebpack.config.babel.js
57 lines (55 loc) · 1.25 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
/**
* Created by Tomasz Gabrysiak @ Infermedica on 02/02/2017.
*/
const path = require('path');
module.exports = {
context: __dirname,
entry: './src/index.js',
devtool: 'source-map',
output: {
path: path.join(__dirname, '/public'),
filename: 'bundle.js'
},
devServer: {
publicPath: '/public/',
inline: true,
host: '127.0.0.1'
},
resolve: {
extensions: ['.js', '.json']
},
stats: {
colors: true,
reasons: true,
chunks: false
},
module: {
rules: [
{
test: /\.js$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
}, {
test: /\.js$/,
loader: 'babel-loader',
include: path.resolve(__dirname, 'src'),
query: {
plugins: ['@babel/transform-runtime'],
presets: ['@babel/preset-env']
}
}, {
test: /\.css$/,
use: ['style-loader', {loader: 'css-loader'}]
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&minetype=application/font-woff&name=[path][name].[ext]'
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader?name=[path][name].[ext]'
}
]
}
};