forked from FrederikBolding/chainlist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.ts
50 lines (47 loc) · 1.32 KB
/
gatsby-node.ts
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
import { GatsbyNode } from "gatsby";
import path from "path";
import webpack from "webpack";
import { createRemoteFileNode } from "gatsby-source-filesystem";
export const sourceNodes: GatsbyNode['sourceNodes'] = async ({
actions,
createNodeId,
store,
cache,
reporter
}) => {
const { createNode } = actions;
await createRemoteFileNode({
url: "https://chainid.network/chains.json",
createNode,
createNodeId,
store,
cache,
reporter,
name: "chains",
ext: ".json"
});
};
// https://github.com/WalletConnect/walletconnect-monorepo/issues/584
export const onCreateWebpackConfig: GatsbyNode["onCreateWebpackConfig"] = ({
actions,
}) => {
actions.setWebpackConfig({
plugins: [
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
}),
],
resolve: {
fallback: {
util: path.resolve(`./node_modules/util/`),
url: path.resolve(`./node_modules/url/`),
assert: path.resolve(`./node_modules/assert/`),
crypto: path.resolve(`./node_modules/crypto-browserify`),
os: path.resolve(`./node_modules/os-browserify/browser`),
https: path.resolve(`./node_modules/https-browserify`),
http: path.resolve(`./node_modules/stream-http`),
stream: path.resolve(`./node_modules/stream-browserify`),
},
},
});
};