-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
68 lines (63 loc) · 1.61 KB
/
webpack.config.js
File metadata and controls
68 lines (63 loc) · 1.61 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
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
'use strict';
const webpack = require('webpack');
const path = require('path');
const loaders = require('./webpack.loaders');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const DashboardPlugin = require('webpack-dashboard/plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const dotenv = require('dotenv');
const HOST = process.env.HOST || '127.0.0.1';
const PORT = process.env.PORT || '8888';
loaders.push({
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style', 'css?modules&importLoaders=1&localIdentName=[local]___[hash:base64:5]!sass?outputStyle=expanded'),
exclude: ['node_modules']
});
const envVariables = dotenv.config().parsed;
const envValues = Object.keys(envVariables).reduce((obj, key) => {
obj[`__${key.toUpperCase()}__`] = JSON.stringify(envVariables[key]);
return obj;
}, {});
module.exports = {
entry: [
'react-hot-loader/patch',
'./src/index.jsx',
'./styles/index.scss'
],
devtool: process.env.WEBPACK_DEVTOOL || 'eval-source-map',
output: {
publicPath: '/',
path: path.join(__dirname, 'public'),
filename: 'bundle.js'
},
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders
},
devServer: {
contentBase: './public',
noInfo: true,
hot: false,
inline: true,
historyApiFallback: true,
port: PORT,
host: HOST
},
plugins: [
new webpack.DefinePlugin(envValues),
new webpack.NoErrorsPlugin(),
new ExtractTextPlugin('style.css', {
allChunks: true
}),
new DashboardPlugin(),
new HtmlWebpackPlugin({
template: './src/template.html',
files: {
css: ['style.css'],
js: [ 'bundle.js']
}
})
]
};