mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
18 lines
493 B
TypeScript
18 lines
493 B
TypeScript
import fs from "fs"
|
|
import sourceMapSupport from "source-map-support"
|
|
import { fileURLToPath } from "url"
|
|
|
|
export const options: sourceMapSupport.Options = {
|
|
// source map hack to get around query param
|
|
// import cache busting
|
|
retrieveSourceMap(source) {
|
|
if (source.includes(".quartz-cache")) {
|
|
let realSource = fileURLToPath(source.split("?", 2)[0] + ".map")
|
|
return {
|
|
map: fs.readFileSync(realSource, "utf8"),
|
|
}
|
|
} else {
|
|
return null
|
|
}
|
|
},
|
|
}
|