-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
26 lines (25 loc) · 886 Bytes
/
gatsby-node.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
/* eslint-disable */
// const path = require("path")
// exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
// if (stage === 'build-html') {
// actions.setWebpackConfig({
// module: {
// rules: [
// {
// test: path.resolve(__dirname, '/node_modules/faya-websocket/lib/faye/eventsource.js'),
// use: loaders.null(),
// }, {
// test: path.resolve(__dirname, '/node_modules/faya-websocket/lib/faye/websocket.js'),
// use: loaders.null(),
// }, {
// test: path.resolve(__dirname, '/node_modules/@babel/runtime/helpers/inheritsLoose.js'),
// use: loaders.null(),
// }, {
// test: path.resolve(__dirname, '/.cache/static-entry.js'),
// use: loaders.null(),
// }
// ],
// },
// })
// }
// }