-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
45 lines (44 loc) · 1.07 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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: {
vendor: ['babel-polyfill', 'webpack-hot-middleware/client'],
app: './src/index',
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
publicPath: '/',
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: 'index.ejs',
}),
],
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['react-hot', 'babel'],
include: path.join(__dirname, 'src'),
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader'],
include: path.join(__dirname, 'src/css'),
},
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
loader: 'file?name=public/fonts/[name].[ext]',
include: path.join(__dirname, 'src/assets'),
}],
},
resolve: {
extensions: ['', '.js', '.jsx', '.css', 'svg'],
modulesDirectories: [
'node_modules',
],
},
};