import { baseRender } from "./utils/base.js";
/**
* Checks if HTML contains a link to a local stylesheet (./style.css or /style.css)
*/
function hasLocalStylesheet(html) {
return /]*rel=["']stylesheet["'][^>]*href=["']([.\/]*style\.css|\/style\.css)["'][^>]*>/i.test(html);
}
/**
* Checks if HTML contains a local script tag (./script.js or /script.js)
*/
function hasLocalScript(html) {
return /