File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 2222 PATH_MODULE : pinyin # 以拼音路径形式构建
2323 STEAM_ID : ${{ secrets.STEAM_ID }}
2424 STEAM_API_KEY : ${{ secrets.STEAM_API_KEY }}
25- ENABLE_REQUEST : " true "
25+ ENABLE_REQUEST : " false "
2626 runs-on : ubuntu-latest
2727 steps :
2828 - name : Checkout your repository using git
Original file line number Diff line number Diff line change @@ -18,6 +18,21 @@ import BaseLayout from "../layouts/BaseLayout.astro";
1818 </div >
1919</BaseLayout >
2020
21+ <script >
22+ window.onload = () => {
23+ // 获取完整的来源 URL
24+ let referrer = document.referrer;
25+ console.log("来源ts测试:", referrer);
26+ };
27+ </script >
28+ <script is:inline >
29+ window.onload = () => {
30+ // 获取完整的来源 URL
31+ let referrer = document.referrer;
32+ console.log("来源js测试:", referrer);
33+ };
34+ </script >
35+
2136<script >
2237 import { ToastMessageEvent } from "../utils/types";
2338
@@ -41,6 +56,8 @@ import BaseLayout from "../layouts/BaseLayout.astro";
4156 window.onload = welcome;
4257</script >
4358
59+
60+
4461<style >
4562 .content-wrapper {
4663 padding: 0 1.5rem;
You can’t perform that action at this time.
0 commit comments