mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-06 02:11:56 +00:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
const publicPath = (document.currentScript as HTMLScriptElement)?.src.replace(/^(.*\/)[^/]+$/, '$1');
|
|
|
|
export function getPublicPath(): string {
|
|
return publicPath || '';
|
|
}
|