-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.js
86 lines (83 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var precss = require('precss');
var syntax = require('postcss-scss');
var contentBase = path.join(__dirname);
var publicPath = '/';
var modulesPath = path.join(__dirname, 'node_modules');
var clientPath = path.join(__dirname, 'client');
var targetPath = path.join(__dirname);
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'react-hot-loader/patch',
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
path.join(clientPath, 'index.js')
],
output: {
path: targetPath,
filename: 'bundle.js',
publicPath: publicPath
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development')
}
}),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin()
],
resolve: {
extensions: ['.js', '.jsx', '.css']
},
module: {
rules: [{
test: /\.jsx?$/,
use: [
'babel-loader'
],
exclude: [modulesPath]
}, {
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true,
importLoaders: 1
}
},
{
loader: 'postcss-loader',
options: {
parser: syntax,
plugins: function () {
return [
precss,
autoprefixer
]
}
}
}
]
}, {
test: /\.png$/,
use: {
loader: "url-loader",
options: { mimetype: "image/png" }
}
}]
},
devServer: {
host: 'localhost',
port: 3000,
contentBase: contentBase,
publicPath: publicPath,
hot: true,
historyApiFallback: true
}
};