-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.common.js
76 lines (73 loc) · 2.13 KB
/
webpack.common.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const CleanWebpackPlugin = require('clean-webpack-plugin');
const path = require('path');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin")
module.exports = {
entry: {
app: './src/index.jsx'
},
module: {
rules: [{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react', 'stage-2']
}
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract({
use: {
loader: 'css-loader',
options: {
minimize: true
}
},
fallback: 'style-loader'
})
},
{
test: /\.woff|.woff2|.ttf|.eot|.ico|.jpg|.jpeg|.svg|.png*.*$/,
loader: 'file-loader?name=[name].[ext]'
},
{
test: /\.json|.xml*.*$/,
include: [
path.resolve(__dirname, "src/assets/doc")
],
loader: 'file-loader?name=[name].[ext]'
}
]
},
resolve: {
extensions: ['.js', '.jsx']
},
plugins: [
new CleanWebpackPlugin(['dist']),
new ExtractTextPlugin('app.[hash].css'),
new CopyWebpackPlugin([
{
from: './src/assets/apoio',
to: './apoio/'
}
]),
new CopyWebpackPlugin([
{
from: './src/assets/palestrantes',
to: '.'
}
]),
new CopyWebpackPlugin([
{
from: './src/assets/patrocinadores',
to: './patrocinadores/'
}
]),
new CopyWebpackPlugin([
'src/assets/browserconfig.xml',
'src/assets/manifest.json',
'src/assets/favicon.ico',
])
]
};