forked from patw0929/react-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
82 lines (75 loc) · 1.95 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
/*
* Webpack development server configuration
*
* This file is set up for serving the webpack-dev-server, which will watch for changes and recompile as required if
* the subfolder /webpack-dev-server/ is visited. Visiting the root will not automatically reload.
*/
var webpack = require('webpack'),
path = require('path');
var eslintrcPath = path.resolve(__dirname, '.eslintrc');
module.exports = {
devtool: 'eval',
watch: true,
output: {
filename: '[name].js',
publicPath: '/assets/'
},
entry: {
main: [
'webpack/hot/only-dev-server',
'./src/containers/IntlTelInputApp.js'
],
example: [
'webpack/hot/only-dev-server',
'./src/example.js'
]
},
externals: {
react: 'React',
'react-dom': 'ReactDOM'
},
stats: {
colors: true,
reasons: true
},
resolve: {
extensions: ['', '.js', '.jsx'],
alias: {
'styles': __dirname + '/src/styles',
'mixins': __dirname + '/src/mixins',
'components': __dirname + '/src/components/',
'react-intl-tel-input': './containers/IntlTelInputApp.js',
},
root: __dirname + '/src',
},
module: {
loaders: [{
test: /\.(js|jsx)$/,
exclude: /(node_modules|libphonenumber\.js)/,
loader: 'react-hot!babel-loader'
}, {
test: /\.scss/,
loader: 'style-loader!css-loader!sass-loader?outputStyle=expanded'
}, {
test: /\.css$/,
loader: 'style-loader!css-loader'
}, {
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?{progressive:true, optimizationLevel: 3, interlaced: false, pngquant:{quality: "30-40", speed: 1}}'
]
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.NormalModuleReplacementPlugin(
/^\.\/main\.css$/,
__dirname + '/dist/main.css'
),
],
eslint: {
configFile: eslintrcPath
}
};