-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.dev.js
40 lines (38 loc) · 1.03 KB
/
webpack.config.dev.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
const path = require('path')
const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const srcDir = path.resolve(__dirname, 'client/src')
module.exports = {
devtool: 'source-map',
mode: 'development',
entry: `${srcDir}/index.js`,
output: {
path: path.resolve(__dirname, 'client/public'),
filename: 'bundle.js'
},
module: {
rules: [
{ test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel-loader' },
{
test: /\.styl$/,
exclude: /node_modules/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: { localIdentName: '[name]__[local]__[hash:base64:6]', exportLocalsConvention: 'camelCase' }
}
},
'stylus-loader'
]
}
]
},
plugins: [
new HtmlWebpackPlugin({ template: 'client/src/index.html' }),
new webpack.DefinePlugin({
'process.env.HOST': JSON.stringify(process.env.HOST || 'http://localhost:3000/')
})
]
}