We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8034a33 commit 49fcd0fCopy full SHA for 49fcd0f
packages/cloudflare/src/cli/build/build.ts
@@ -87,10 +87,10 @@ export async function build(projectOpts: ProjectOptions): Promise<void> {
87
createStaticAssets(options);
88
89
if (config.dangerous?.disableIncrementalCache !== true) {
90
- const { metaFiles } = createCacheAssets(options);
+ const { useTagCache, metaFiles } = createCacheAssets(options);
91
copyCacheAssets(options);
92
93
- if (config.dangerous?.disableTagCache !== true) {
+ if (useTagCache) {
94
compileCacheAssetsManifestSqlFile(options, metaFiles);
95
}
96
0 commit comments