-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
39 lines (35 loc) · 921 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
const HtmlWebPackPlugin = require('html-webpack-plugin');
const htmlPlugin = new HtmlWebPackPlugin({
template: './src/index.html',
filename: './index.html'
});
const CopyWebpackPlugin = require('copy-webpack-plugin')
const copyPlugin = new CopyWebpackPlugin([{from: 'config.xml', to: 'config.xml'}]);
module.exports = {
output: {
path: __dirname + '/www',
publicPath: ''
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.jsx$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{ test: /\.css/, loader: 'style-loader!css-loader' },
{ test: /\.(woff|woff2|eot|ttf)$/, loader: 'url-loader?limit=100000' },
{ test: /\.(jpg)$/, loader: 'file-loader' }
]
},
plugins: [htmlPlugin, copyPlugin]
};