我想在使用Gatsby Plugin Google Analytics时利用浏览器缓存。
我尝试将https://blinkloader.com用于我的网站https://akshaykadam.me,但这给了我1个问题杠杆浏览器缓存
在HTTP标头中为静态资源设置有效期限或最长期限,指示浏览器从本地磁盘而不是通过网络加载以前下载的资源。
因此,我尝试在cookieExpires
中放置一个gatsby-config.js
字段,如
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: GOOGLE_ANALYTICS_TRACKING_ID,
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: [],
cookieExpires: 30
}
}
但是它没有用,因为它仍然会出现相同的问题。像this一样怎么做?
编辑:我也将其发布在the Github Issue上:)