提问人:Helmar Bachle 提问时间:2/4/2023 更新时间:2/21/2023 访问量:741
Cookie同意弹出窗口未显示在Astro.js项目上
Cookie Consent pop up not showing up on Astro.js Project
问:
Cookie同意书未显示在我的网站上:https://mytopcountries.web.app/
`
document.addEventListener('DOMContentLoaded', 函数 () { cookieconsent.run({“notice_banner_type”:“simple”,“consent_type”:“express”,“palette”:“light”,“language”:“en”,“page_load_consent_levels”:[“strictly-necessary”],“notice_banner_reject_button_hide”:false,“preferences_center_close_button_hide”:false,“page_refresh_confirmation_buttons”:false,“website_name”:“uspekhi”,“website_privacy_policy_url”:“https://uspekhi.web.app/”}); });TermsFeed Policy Generator 提供的免费 cookie 同意管理工具
`我已经在Firebase上部署了该网站,并在公共文件夹中添加了TermsFeed https://www.TermsFeed.com 的Cookie同意.html但是它没有在实时页面上弹出:https://mytopcountries.web.app/
答:
1赞
molnargabor
2/21/2023
#1
您不应放入文件夹。它适用于您的非代码、未处理的资产(字体、图标等)。index.html
/public
Astro 使用文件夹作为项目文件。/src
文档:https://docs.astro.build/en/core-concepts/project-structure/
评论