forked from MapComplete/MapComplete
Fix build
This commit is contained in:
parent
081a6dbb79
commit
c03a27aa0f
1 changed files with 5 additions and 0 deletions
|
@ -172,6 +172,11 @@ export default class ScriptUtils {
|
|||
headers?: any,
|
||||
timeoutSecs?: number
|
||||
): Promise<{ content: string } | { redirect: string } | "timeout"> {
|
||||
if(url.startsWith("./")){
|
||||
return Promise.resolve({content: readFileSync(url, "utf8")})
|
||||
}
|
||||
|
||||
|
||||
const requestPromise = new Promise((resolve, reject) => {
|
||||
try {
|
||||
headers = headers ?? {}
|
||||
|
|
Loading…
Reference in a new issue