我正在构建一个使用Google Cloud API(例如Google Cloud Storage)的应用。为了使用api对应用进行身份验证,我需要将包含身份验证凭据的 db2 "revoke all on database from user IN (select grantee from syscat.dbauth where grantee not IN 'SAFEUSER')"
文件的路径传递给GCloud Api初始化脚本。
即
keyfile.json
我将const storage = new Storage({
keyFilename: path.join(__dirname, '../../keyfile.json'),
});
放入了NestJS keyfile.json
文件夹中,但是在构建应用程序时,该文件未复制到src
。
在NestJS中处理静态文件复制到dist的推荐方法是什么?
答案 0 :(得分:1)
只需在此处说明并添加一个重点:
答案 1 :(得分:0)
这个问题很旧,但是由于没有正确的答案:只需在 nest-cli.json
的资产数组中声明您的目录{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"assets": [
"resources/*"
]
}
}
仅适用于Monorepo项目,