Fix build
This commit is contained in:
parent
13829a89a2
commit
e0b8a1c402
1 changed files with 3 additions and 0 deletions
|
@ -172,6 +172,9 @@ export default class ScriptUtils {
|
|||
headers?: any,
|
||||
timeoutSecs?: number
|
||||
): Promise<{ content: string } | { redirect: string } | "timeout"> {
|
||||
if(url.startsWith("./assets")){
|
||||
return Promise.resolve({content: readFileSync("./public/"+url, "utf8")})
|
||||
}
|
||||
if(url.startsWith("./")){
|
||||
return Promise.resolve({content: readFileSync(url, "utf8")})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue