-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwebpack.common.js
More file actions
70 lines (63 loc) · 1.87 KB
/
webpack.common.js
File metadata and controls
70 lines (63 loc) · 1.87 KB
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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const AppHTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: `${__dirname}/src/index.html`,
filename: __dirname + '/dist/app.html',
inject: 'body',
chunks: ['app'],
});
const StickerHTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: `${__dirname}/src/sticker/html/index.html`,
filename: __dirname + '/dist/sticker.html',
inject: 'body',
chunks: ['sticker'],
});
module.exports = {
target: 'electron-main',
node: {
__dirname: false
},
entry: {
main: './src/main.js',
app: './src/index.js',
sticker: './src/sticker/html/index.js',
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
resolve: {
extensions: ['.js', '.json']
},
module: {
rules: [
{
test: /\.js?$/,
exclude: /(node_modules|bower_components|__tests__|__mocks__)/,
loader: 'babel-loader'
},
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' },
// Scss
{
test: /\.scss$/,
loaders: ['style-loader', 'css-loader', 'sass-loader']
},
//less
{
test: /\.less$/,
loaders: ['style-loader', 'css-loader', 'less-loader']
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader']
}
]
},
plugins: [
new CleanWebpackPlugin(['dist']),
AppHTMLWebpackPluginConfig,
StickerHTMLWebpackPluginConfig
]
};