update builder path
This commit is contained in:
parent
367cf37795
commit
b695355ed1
|
@ -73,7 +73,8 @@ exports.toggleBetaUiFeature = async function (ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.serveBuilder = async function (ctx) {
|
exports.serveBuilder = async function (ctx) {
|
||||||
await send(ctx, ctx.file, { root: TOP_LEVEL_PATH })
|
const builderPath = resolve(TOP_LEVEL_PATH, "builder")
|
||||||
|
await send(ctx, ctx.file, { root: builderPath })
|
||||||
if (!ctx.file.includes("assets/")) {
|
if (!ctx.file.includes("assets/")) {
|
||||||
await events.serve.servedBuilder()
|
await events.serve.servedBuilder()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue