mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-31 08:08:17 +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 || '';
|
|
}
|