forked from wavesplatform/WavesExplorerLite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
145 lines (135 loc) · 4.45 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
const HtmlWebPackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const buildPath = path.join(__dirname, 'dist');
const sourcesPath = path.join(__dirname, 'src');
const scriptsPath = path.join(sourcesPath, 'js');
var config = {
entry: {
main: path.join(scriptsPath, 'index.js')
},
output: {
filename: '[name].[hash:16].js',
path: buildPath,
publicPath: '/'
},
module: {
rules: [{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
// directory for faster rebuilds.
cacheDirectory: true,
plugins: ['react-hot-loader/babel'],
}
}
}, {
test: /\.html$/,
use: [{
loader: 'html-loader'
}]
}, {
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: false
}
},
'sass-loader'
]
},
{
test: /\.(woff|woff2|ttf|otf)$/,
exclude: /node_modules/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]',
}
},
{
test: /\.(png|jpg|gif|svg)$/,
use: [{
loader: 'file-loader',
options: {
name: 'images/[name].[hash].[ext]'
}
}]
}]
},
plugins: [
new HtmlWebPackPlugin({
template: path.join(sourcesPath, 'index.html'),
filename: './index.html'
}),
new webpack.DefinePlugin({
__VERSION__: JSON.stringify(require('./package.json').version),
__DECOMPILE_SCRIPT_URL__: JSON.stringify('https://testnode1.wavesnodes.com/utils/script/decompile')
}),
new LodashModuleReplacementPlugin({
shorthands: true
}),
new webpack.HashedModuleIdsPlugin(),
new CopyWebpackPlugin([{
from: path.join(sourcesPath, 'favicon.png'),
to: buildPath
}, {
from: 'manifest.json',
to: buildPath
}], { debug: true })
],
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor'
},
},
},
},
};
const networks = {
mainnet: ['mainnet', 'testnet', 'stagenet'],
devnet: ['devnet']
};
module.exports = (env, argv) => {
let googleTrackingId;
let amplitudeApiKey;
let sentryDsn;
if (argv.mode === 'development') {
config.devtool = 'source-map';
config.plugins.push(new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false
}));
googleTrackingId = 'UA-75283398-17';
amplitudeApiKey = '0b3481b4cb40d949738933a57eaeb4fe';
sentryDsn = 'https://[email protected]/1401737';
}
if (argv.mode === 'production') {
config.output.filename = '[name].[chunkhash].js';
googleTrackingId = 'UA-75283398-13';
amplitudeApiKey = 'e15743e3459050165886afc936f1a08e';
sentryDsn = 'https://[email protected]/1401739';
}
const network = (env && env.network) || 'mainnet';
const networkConfiguration = networks[network];
config.plugins.push(new webpack.DefinePlugin({
__NETWORKS__: JSON.stringify(networkConfiguration),
__GOOGLE_TRACKING_ID__: JSON.stringify(googleTrackingId),
__AMPLITUDE_API_KEY__: JSON.stringify(amplitudeApiKey),
__SENTRY_DSN__: JSON.stringify(sentryDsn)
}));
return config;
};