- 将所有图片路径从绝对路径改为使用 process.env.PUBLIC_URL - 修复 HomePage.tsx 中所有图片引用 - 修复 CoursePage.tsx 中所有图片引用 - 确保图片在 GitHub Pages 上正确加载 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
868 B
JavaScript
24 lines
868 B
JavaScript
/**
|
|
* @returns {string}
|
|
*/
|
|
function getCurrentScriptSource() {
|
|
// `document.currentScript` is the most accurate way to find the current script,
|
|
// but is not supported in all browsers.
|
|
if (document.currentScript) {
|
|
return document.currentScript.getAttribute("src");
|
|
}
|
|
|
|
// Fallback to getting all scripts running in the document.
|
|
var scriptElements = document.scripts || [];
|
|
var scriptElementsWithSrc = Array.prototype.filter.call(scriptElements, function (element) {
|
|
return element.getAttribute("src");
|
|
});
|
|
if (scriptElementsWithSrc.length > 0) {
|
|
var currentScript = scriptElementsWithSrc[scriptElementsWithSrc.length - 1];
|
|
return currentScript.getAttribute("src");
|
|
}
|
|
|
|
// Fail as there was no script to use.
|
|
throw new Error("[webpack-dev-server] Failed to get current script source.");
|
|
}
|
|
export default getCurrentScriptSource; |