Skip to content

Commit 8b6759b

Browse files
committed
fix: broken static assets if using a remotely-connected arc sandbox.
need to also check for `ARC_LOCAL` to disable static asset fingerprinting
1 parent 0497c4d commit 8b6759b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/http/any-catchall/_fingerprint-paths.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fs from 'fs'
22
import path from 'path'
33
import url from 'url'
4-
const _local = process.env.ARC_ENV === 'testing'
4+
const _local = process.env.ARC_ENV === 'testing' || process.env.ARC_LOCAL
55

66
let manifest = {}
77
if (!_local) {

0 commit comments

Comments
 (0)