-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.renderer.config.js
117 lines (113 loc) · 3.28 KB
/
webpack.renderer.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
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
106
107
108
109
110
111
112
113
114
115
116
117
const webpack = require('webpack');
const path = require('path');
const { merge } = require('webpack-merge');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const baseConfig = require('./webpack.base.config');
const AntDesignThemePlugin = require('antd-theme-webpack-plugin');
const options = {
antDir: path.join(__dirname, './node_modules/antd'),
stylesDir: path.join(__dirname, './src/renderer/styles/theme'),
varFile: path.join(__dirname, './src/renderer/styles/theme/variables.less'),
mainLessFile: path.join(__dirname, './src/renderer/styles/theme/index.less'),
themeVariables: [
'@primary-color',
// '@body-background',
// '@component-background',
// '@icon-color-hover',
// '@heading-color',
// '@text-color',
// '@text-color-secondary',
// '@border-color-base',
// '@border-style-base',
// '@layout-body-background',
// '@layout-header-background',
// '@layout-sider-background',
// '@layout-trigger-background',
// '@disabled-color',
// '@disabled-color-dark',
// '@outline-blur-size',
// '@background-color-light',
// '@background-color-base',
// '@item-hover-bg',
// '@shadow-color',
// '@badge-text-color',
// '@card-actions-background',
// '@card-shadow',
// '@avatar-bg',
],
indexFileName: 'index.html',
};
module.exports = merge(baseConfig, {
target: 'electron-renderer',
entry: {
app: ['@babel/polyfill', './src/renderer/app.tsx'],
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
cacheDirectory: true,
babelrc: false,
presets: [
['@babel/preset-env', { targets: { browsers: 'last 2 versions ' } }],
'@babel/preset-typescript',
'@babel/preset-react',
],
plugins: [['@babel/plugin-proposal-class-properties', { loose: true }]],
},
},
{
test: /\.css$/,
use: [
'style-loader',
'@teamsupercell/typings-for-css-modules-loader',
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[name]__[local]--[hash:base64:5]',
},
localsConvention: 'camelCaseOnly',
},
},
],
exclude: /\.global\.css$/,
},
{
test: /\.global\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(gif|png|jpe?g|svg|eot|ttf|woff|woff2)$/,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
disable: true,
},
},
],
},
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{
enforce: 'pre',
test: /\.js$/,
loader: 'source-map-loader',
},
],
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
new webpack.NamedModulesPlugin(),
new HtmlWebpackPlugin(),
new AntDesignThemePlugin(options),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development'),
}),
],
});