-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathwebpack.config.js
More file actions
160 lines (150 loc) · 5.14 KB
/
webpack.config.js
File metadata and controls
160 lines (150 loc) · 5.14 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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');
const basePath = process.env.BASE_PATH || '/'
var config = {
resolve: {
fallback: {
"crypto": require.resolve("crypto-browserify"),
"vm": require.resolve("vm-browserify"),
"stream": require.resolve("stream-browserify")
}
},
entry: {
main: path.join(scriptsPath, 'index.js')
},
output: {
filename: '[name].[hash:16].js',
path: buildPath,
publicPath: basePath
},
module: {
rules: [{
test: /\.m?js$/,
include: /node_modules[\\/]@waves[\\/]ts-lib-crypto[\\/]dist[\\/]esm/,
resolve: {
// Allow extensionless imports inside ESM output of ts-lib-crypto (node-forge/*)
fullySpecified: false,
},
}, {
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: []
}
}
}, {
test: /\.s[ac]ss$/i,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.(woff|woff2|ttf|otf)$/,
exclude: /node_modules/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext]', // fonts folder in dist
},
},
{
test: /\.(png|jpg|gif|svg)$/,
type: 'asset/resource',
generator: {
filename: 'images/[name].[hash].[ext]',
}
}]
},
plugins: [
new HtmlWebPackPlugin({
template: path.join(sourcesPath, 'index.html'),
filename: './index.html',
base: basePath
}),
new webpack.DefinePlugin({
__VERSION__: JSON.stringify(require('./package.json').version),
}),
new LodashModuleReplacementPlugin({
shorthands: true
}),
new webpack.ids.HashedModuleIdsPlugin(),
new CopyWebpackPlugin({
patterns: [{
from: path.join(sourcesPath, 'favicon.png'),
to: buildPath
}, {
from: 'manifest.json',
to: buildPath
},
// {
// from: path.join(sourcesPath, 'config.js'),
// to: buildPath
// }
]
})
],
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor'
},
},
},
},
};
const networks = {
mainnet: ['mainnet', 'testnet', 'stagenet'],
stagenet: ['mainnet', 'testnet', 'stagenet'],
testnet: ['mainnet', 'testnet', 'stagenet'],
devnet: ['devnet'],
custom: [],
};
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://1b5911ae5b1849b9b114809877eb6d84@sentry.io/1401737';
}
if (argv.mode === 'production') {
config.output.filename = '[name].[chunkhash].js';
googleTrackingId = 'UA-75283398-13';
amplitudeApiKey = 'e15743e3459050165886afc936f1a08e';
sentryDsn = 'https://9ee88f8e9ec741d5897e64c89a38e4f6@sentry.io/1401739';
}
const network = (env && env.network) || 'mainnet';
const decompileUrl = (env && env.decompileUrl) || 'https://testnode1.wavesnodes.com/utils/script/decompile';
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),
__DECOMPILE_SCRIPT_URL__: JSON.stringify(decompileUrl),
__BASE_PATH__: JSON.stringify(basePath)
}));
return config;
};