cloud与webpack集成时遇到问题

cloud与webpack集成时遇到问题

本文介绍了将google-cloud与webpack集成时遇到问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将google-cloud npm包与我的反应应用程序集成在一起,并且正在使用firebase。



我遇到的错误 -

任何人都可以帮我解决这个问题吗? 看你使用的是webpack,我假设你在后端使用 google-cloud 库。



试试把这个放到你的webpack配置中:

  config = { 
// ...
外部:{
'@ google-cloud / storage':'commonjs @ google-cloud / storage'
},
// ...
}



说明



用于后端的模块并不是真正意图将它们捆绑在一起(参见:)。因此,我们使用webpack的 externals config来排除那些不能很好地处理捆绑的库。运行应用程序时,它们正常情况下来自 node_modules 目录的 require()'

。 >

如果您不想一一指定您的违规模块,请尝试自动排除所有模块。


I am integrating the google-cloud npm package with my react application and i am using firebase.

Errors i am encountering -

Can anybody help me to resolve this?

解决方案

I see you're using webpack, and I'm assuming you're using the google-cloud library in the backend.

Try putting this in your webpack config:

config = {
    // ...
    externals: {
        '@google-cloud/storage': 'commonjs @google-cloud/storage'
    },
    // ...
}

Explanation

Modules meant for the backend aren't really made with the intention of them being bundled (see: Backend Apps with Webpack). So we use webpack's externals config to exclude libraries that don't handle that bundling well. When the app is run, they are just require()'ed from the node_modules directory as normal.

If you don't want to specify your offending modules one-by-one, try out webpack-node-externals to automatically exclude all modules.

这篇关于将google-cloud与webpack集成时遇到问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-28 03:49