gpt4 book ai didi

nuxt.js - Nuxt.js 中 google API 的实现

转载 作者:行者123 更新时间:2023-12-05 07:00:17 24 4
gpt4 key购买 nike

我希望在 Nuxt 项目中使用 google API 访问我的邮箱。我知道有“gapi”包,但我似乎无法将它们与 Nuxt 一起使用。

谁能给我任何关于如何以最佳方式使用包或使用 Google API 的建议?这个想法只是为了能够连接到我的 Google 帐户,然后请求最新的未读电子邮件。

我想我知道该怎么做。猜猜我只是不明白如何在 Nuxt 中使用外部包。

编辑:

我尝试了 Thamer 告诉我的方法,但是当我这样做时我失败了并出现了这个错误: compile error

我尝试运行 npm install --save child_process fs module 但没有任何变化

最佳答案

我遇到了同样的问题,这是一个 Webpack 错误,将它添加到 nuxt 配置中解决了它,但你应该考虑放置你的 googleapi 相关代码,这样它就不会从客户端调用

build: {
/*
** You can extend webpack config here
*/
extend (config, ctx) {
config.node = {
fs: 'empty',
child_process: 'empty'
}
}
}

关于nuxt.js - Nuxt.js 中 google API 的实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64174301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com