forked from geekcheng/react-desktop-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
executable file
·54 lines (54 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
var webpack = require('webpack');
var path = require('path');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var copyWebpackPlugin = new CopyWebpackPlugin([{
from: path.join(__dirname, 'src', 'vendor'),
to: path.join(__dirname, 'build', 'vendor'),
}, {
from: path.join(__dirname, 'src', 'imgs', 'favicon.ico'),
to: path.join(__dirname, 'build'),
}]);
module.exports = {
plugins: [
copyWebpackPlugin,
],
entry: {
index: ['./src/tsx/index.tsx'],
},
output: {
filename: '[name].js',
path: path.join(__dirname, 'build'),
},
module: {
loaders: [{
test: /\.css$/,
loader: 'style-loader!css-loader'
}, {
test: /\.(png|jpg|gif|ico)$/,
loader: "url?limit=1024&name=[hash:16].[ext]"
}, {
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=1024&mimetype=application/font-woff"
}, {
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=10024&mimetype=application/font-woff2"
}, {
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=1024&mimetype=application/octet-stream"
}, {
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: "file"
}, {
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=1024&mimetype=image/svg+xml"
}, {
test: /\.tsx?$/,
loader: "ts-loader"
}]
},
externals: {
"react": "React",
"react-dom": "ReactDOM",
"jQuery": "jQuery"
}
};