-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraco.config.js
107 lines (104 loc) · 2.44 KB
/
craco.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
/* eslint-disable */
const CracoLessPlugin = require('craco-less');
const TerserPlugin = require('terser-webpack-plugin');
const webpack = require('webpack');
const path = require('path');
const { NODE_ENV, REACT_APP_PREFIX } = process.env;
const activeApi = require('./proxy');
commonPlugins = [
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
}),
];
const Webpack = {
production: {
plugins: [
...commonPlugins,
new TerserPlugin({
terserOptions: {
compress: {
// drop_console: true,
drop_debugger: true,
pure_funcs: ['console.log'],
},
},
}),
// Ignore all local files of moment.js
new webpack.IgnorePlugin({
contextRegExp: /^\.\/locale$/,
resourceRegExp: /moment$/,
}),
],
},
development: {
plugins: [...commonPlugins],
},
};
module.exports = {
eslint:{
enable: false,
},
devServer: {
port: 3002,
proxy: {
'/api': {
target: activeApi.api,
changeOrigin: true,
secure: true,
},
'/connect': {
target: activeApi.connectTokenApi,
changeOrigin: true,
secure: true,
},
},
},
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
'@app-prefix': REACT_APP_PREFIX,
'@ant-prefix': REACT_APP_PREFIX,
},
javascriptEnabled: true,
},
},
},
},
],
webpack: {
...Webpack[NODE_ENV],
configure: {
resolve: {
fallback: {
// crypto: false,
crypto: require.resolve('crypto-browserify'),
stream: require.resolve('stream-browserify'),
buffer: require.resolve('buffer'),
http: require.resolve('stream-http'),
https: require.resolve('https-browserify'),
url: require.resolve('url/'),
os: require.resolve('os-browserify/browser'),
fs: false,
child_process: false,
},
},
module: {
rules: [
{
test: /\.m?js$/,
resolve: {
fullySpecified: false,
},
},
],
},
},
alias: {
'@assets': path.resolve(__dirname, 'src/assets'),
},
},
};