forked from mmermerkaya/phaser-isometric-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
41 lines (40 loc) · 947 Bytes
/
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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: path.join(__dirname, 'src/main.js'),
output: {
path: path.join(__dirname, 'build'),
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.jsx?$/,
include: /src/,
loader: 'babel-loader',
}, {
test: /\.json$/,
include: /src/,
loader: 'json-loader',
}, {
test: /\.(jpg|png)$/,
include: /src/,
loader: 'file-loader?name=assets/[hash].[ext]',
},
],
},
resolve: {
modules: [path.join(__dirname, 'src'), 'node_modules'],
extensions: ['.js', '.jsx', '.css'],
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/assets/index.html',
}),
new CopyWebpackPlugin([{
from: 'src/vendor',
to: 'vendor',
}]),
],
};