-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
55 lines (48 loc) · 1.08 KB
/
webpack.config.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
var prepareData = require('./prepareData');
var webpack = require('webpack');
var path = require('path');
module.exports = {
devtool: 'eval',
entry: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
'./src/App'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/dist/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [
{
test: /\.js?$/,
exclude: /node_modules/,
loaders: ['react-hot', 'babel-loader?stage=0']
},
{
test: /\.less$/,
loader: 'style!css!less' // Run mutliple loaders
},
{
test: /\.(png|jpg)$/,
loader: 'url?limit=25000' // Images 25KB or smaller in size will be converted to a BASE64 string
},
{
test: /\.md$/,
loader: "html!markdown-highlight"
},
{
test: /\.json$/,
loader: "json-loader"
}
]
}
};