(config, isServer)
| 1 | export default function webpack(config, isServer) { |
| 2 | config.resolve.fallback = { |
| 3 | aws4: false, |
| 4 | }; |
| 5 | config.module.rules.push({ |
| 6 | test: /\.node$/, |
| 7 | loader: "node-loader", |
| 8 | }); |
| 9 | if (isServer) { |
| 10 | config.ignoreWarnings = [{ module: /opentelemetry/ }]; |
| 11 | } |
| 12 | return config; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected