local examples

This commit is contained in:
STEINNI
2026-03-08 18:11:20 +00:00
parent f7d5f40c0f
commit 451d8ae191
15 changed files with 80 additions and 80 deletions

View File

@@ -39,7 +39,7 @@ class BZgraflow extends Buildoz{
static async getCoreCss(){
if(BZgraflow._coreCssPromise) return(await BZgraflow._coreCssPromise)
BZgraflow._coreCssPromise = (async() => {
const res = await fetch('/app/thirdparty/buildoz/buildoz.css')
const res = await fetch('/buildoz/buildoz.css')
const css = await res.text()
const m = css.match(/\/\*\s*BZGRAFLOW_CORE_START\s*\*\/([\s\S]*?)\/\*\s*BZGRAFLOW_CORE_END\s*\*\//)
const core = m ? m[1] : ''