-
Notifications
You must be signed in to change notification settings - Fork 26
/
webpack.config.js
executable file
·56 lines (53 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
55
56
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const extractCSSPlugin = new ExtractTextPlugin({
filename: 'css/[name].css',
allChunks: true,
});
module.exports = {
entry: path.resolve(__dirname, 'src', 'ui', 'index.js'),
output: {
filename: 'js/bundle.js',
path: path.resolve(__dirname, 'src', 'static'),
},
target: 'electron',
module: {
rules: [
{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
include: [
path.resolve(__dirname, 'src', 'ui'),
],
},
{
test: /\.(css|scss)$/,
loader: extractCSSPlugin.extract({
use: [
{
loader: 'css-loader',
options: {
modules: true,
importLoaders: 2,
localIdentName: '[name]--[local]___[hash:base64:5]',
},
},
],
}),
},
],
},
resolve: {
alias: {
'react': 'preact-compat',
'react-dom': 'preact-compat',
},
modules: [
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname, 'src', 'ui'),
path.resolve(__dirname, 'src', 'electron'),
],
extensions: ['.js', '.jsx', '.json'],
},
plugins: [extractCSSPlugin],
};