This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
83 lines (69 loc) · 2.79 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
const dotenv = require('dotenv')
// Setup env vars
dotenv.config()
const getWebpackConfig = require('./getWebpackConfig')
const loadConfig = require('./src/loadConfig')
const overrideEnvConfig = require('./src/overrideEnvConfig')
const isProduction = process.env.NODE_ENV === 'production'
const baseUrl = isProduction ? '' : '/'
// FIXME: The apps right now depend on config they don't, se below attempt to check what was required. One example of something that is required but we don't need is --> for some reason "createTheGraphApi" it's being executed
const CONFIG = loadConfig()
const config = overrideEnvConfig(CONFIG)
const EXPLORER_APP = {
name: 'explorer',
title: 'CoW Protocol Explorer',
filename: 'index.html',
envVars: {
INFURA_ID: process.env.INFURA_ID,
EXPLORER_APP_DOMAIN_REGEX_DEV:
'^dev\\.explorer\\.cow\\.fi|^(explorer-dev-git-[\\w\\d-]+|explorer-\\w{9}-)cowswap\\.vercel\\.app|^explorer-dev\\.vercel\\.app|^localhost:\\d{2,5}|^pr\\d+--explorer\\.review',
EXPLORER_APP_DOMAIN_REGEX_STAGING: '^staging\\.explorer\\.cow\\.fi|^explorer-staging\\.vercel\\.app',
EXPLORER_APP_DOMAIN_REGEX_PROD: '^explorer\\.cow\\.fi|^explorer-prod\\.vercel\\.app',
EXPLORER_APP_DOMAIN_REGEX_BARN: '^barn\\.explorer\\.cow\\.fi|^explorer-barn\\.vercel\\.app',
OPERATOR_URL_STAGING_MAINNET: 'https://barn.api.cow.fi/mainnet/api',
OPERATOR_URL_STAGING_GOERLI: 'https://barn.api.cow.fi/goerli/api',
OPERATOR_URL_STAGING_XDAI: 'https://barn.api.cow.fi/xdai/api',
OPERATOR_URL_PROD_MAINNET: 'https://api.cow.fi/mainnet/api',
OPERATOR_URL_PROD_GOERLI: 'https://api.cow.fi/goerli/api',
OPERATOR_URL_PROD_XDAI: 'https://api.cow.fi/xdai/api',
REACT_APP_IPFS_READ_URI: process.env.REACT_APP_IPFS_READ_URI,
GOOGLE_ANALYTICS_ID: undefined,
REACT_APP_SENTRY_DSN: undefined,
REACT_APP_SUBGRAPH_URL_MAINNET: undefined,
REACT_APP_SUBGRAPH_URL_GNOSIS_CHAIN: undefined,
REACT_APP_SUBGRAPH_URL_GOERLI: undefined,
},
}
const ALL_APPS = [EXPLORER_APP]
function getSelectedApps() {
const appName = process.env.APP
if (appName) {
const app = ALL_APPS.find((app) => appName === app.name)
if (!app) {
throw new Error(`Unknown App ${app}`)
}
return [
{
...app,
filename: 'index.html', // If we return only one app, the html web is "index.html"
},
]
} else {
return ALL_APPS.filter((app) => !app.disabled)
}
}
// Get selected apps: all apps by default
const apps = getSelectedApps()
module.exports = getWebpackConfig({
apps,
config,
baseUrl,
envVars: {
BASE_URL: baseUrl,
},
defineVars: {
CONFIG: JSON.stringify(config),
CONTRACT_VERSION: JSON.stringify(require('@cowprotocol/contracts/package.json').version),
DEX_JS_VERSION: JSON.stringify(require('@gnosis.pm/dex-js/package.json').version),
},
})