forked from Lobos/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
34 lines (33 loc) · 1.1 KB
/
webpack.config.dev.js
File metadata and controls
34 lines (33 loc) · 1.1 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
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'webpack-hot-middleware/client',
'./docs/src/js/app.jsx',
'./docs/src/less/style.less'
],
output: {
path: path.join(__dirname, 'docs'),
filename: 'js/app.js',
publicPath: '/'
},
externals: {'react': 'React', 'react-dom': 'ReactDOM'},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [
{ test: /\.jsx?$/, loaders: ['babel'], include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'docs'),
path.resolve(__dirname, 'node_modules/refetch')
] },
{ test: /\.(css|less)$/, loader: 'style-loader!css-loader?localIdentName=[hash:base64:8]!less-loader' },
{ test: /\.(ttf|eot|woff|woff2|otf|svg)/, loader: 'file-loader?name=./font/[name].[ext]' },
{ test: /\.json$/, loader: 'file-loader?name=./json/[name].json' },
{ test: /\.(png|jpg|jpeg|gif)$/, loader: 'url-loader?limit=10000&name=./images/[name].[ext]' }
]
}
};