2
**failed Building static HTML for pages - 3.572s**

 ERROR #95313 

Building static HTML failed for path "/"

See our docs page for more info on this error: https://gatsby.dev/debug-html


  38 |             thrershold: 0,
  39 |             disableDragImage: function () {
> 40 |                 var transparent = new Image();
     | ^
  41 |                 transparent.src = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';      
  42 |                 return transparent;
  43 |             }()


  ***WebpackError: ReferenceError: Image is not defined***
  
  - index.js:40 
    node_modules/react-carousel-slider/es/index.js:40:1
  
  - index.js:43 
    node_modules/react-carousel-slider/es/index.js:43:14
4

1 回答 1

0

尝试在您的gatsby-node.js:

exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
  if (stage === "build-html") {
    actions.setWebpackConfig({
      module: {
        rules: [
          {
            test: /react-carousel-slider/,
            use: loaders.null(),
          },
        ],
      },
    })
  }
}

一些第三方依赖项使用一些全局对象,例如windowordocument来制作它们的东西。这在运行时完全有效,gatsby develop因为代码是在浏览器端编译的。但是,gatsby build发生在服务器端(您的节点服务器)显然没有窗口,因为它甚至还没有定义。

这就是为什么您需要null通过调用 API 将加载程序添加到 webpack 的配置中onCreateWebpackConfig,以避免服务器端的依赖项转译。

该规则是一个正则表达式(这就是为什么在斜杠之间),从字面上看,该test值与文件夹中的路径匹配node_modules以查找依赖项位置,因此,您必须将确切的文件夹名称放在那里。

于 2021-01-16T12:17:09.403 回答