From 442b418051a6b4f26b61c43cbbae8d9f016b0ff5 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Fri, 11 Jun 2021 16:57:51 -0500 Subject: [PATCH] Remove rootDir from cache path --- helpers/incremental/caching.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/incremental/caching.js b/helpers/incremental/caching.js index 1c7ecbc..be73e3e 100644 --- a/helpers/incremental/caching.js +++ b/helpers/incremental/caching.js @@ -14,7 +14,7 @@ import { isNetlify, rootDir } from '../environment.js' // : path.join(rootDir, '.app_build_cache')//path.resolve(__dirname, '.app_build_cache') -export const CACHE_PATH = path.join(rootDir, '_cache') +export const CACHE_PATH = path.join('_cache') export async function getNetlifyConfig () {