-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathwebpack.common.js
105 lines (101 loc) · 2.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
'use strict';
const path = require('path');
const webpack = require('webpack');
const ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin');
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const publicPath = '/libsvm/';
module.exports = {
entry: [
'./demos/app.js'
// the entry point of our app
],
output: {
path: path.join(__dirname, '../demo-dist'),
filename: 'bundle.js',
publicPath
},
resolve: {
extensions: ['.js'],
alias: {
react: 'preact-compat',
'react-dom': 'preact-compat'
}
},
module: {
rules: [
{
exclude: [/node_modules/, /libsvm\.asm\.js$/],
test: /\.jsx?$/,
loader: 'babel-loader'
},
{
test: /\.css$/,
loader: ['style-loader', 'css-loader']
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff'
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
},
{
test: [
/\.wasm(\?v=[0-9]\.[0-9]\.[0-9])?$/,
/libsvm\.asm\.js$/,
/libsvm\.js\.mem$/
],
loader: 'url-loader',
query: {
name: '[name].[ext]',
limit: 1
}
},
{
test: /manifest\.json$/,
loader: 'file-loader',
query: {
name: 'manifest.json'
}
},
{
test: require.resolve('jquery'),
loader: 'imports-loader'
},
{
test: require.resolve('bootstrap'),
loader: 'imports-loader',
query: {
jQuery: 'jquery',
Tether: 'tether'
}
},
{
test: require.resolve('tether'),
loader: 'imports-loader'
}
]
},
plugins: [
new LodashModuleReplacementPlugin(),
new webpack.LoaderOptionsPlugin({
options: {
worker: {
output: {
filename: 'hash.worker.js',
chunkFilename: '[id].hash.worker.js'
}
}
}
}),
new ServiceWorkerWebpackPlugin({
entry: path.join(__dirname, './sw.js'),
publicPath
})
],
node: {
fs: 'empty',
crypto: 'empty'
}
};