jeawin-astro 4.0.21 → 4.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -251,7 +251,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
251
251
|
* 启用分析工具(如Google Analytics)
|
|
252
252
|
*/
|
|
253
253
|
function enableAnalytics() {
|
|
254
|
-
console.log('✅ 分析工具已启用');
|
|
254
|
+
// console.log('✅ 分析工具已启用');
|
|
255
255
|
|
|
256
256
|
}
|
|
257
257
|
|
|
@@ -259,7 +259,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
259
259
|
* 禁用分析工具
|
|
260
260
|
*/
|
|
261
261
|
function disableAnalytics() {
|
|
262
|
-
console.log('❌ 分析工具已禁用');
|
|
262
|
+
// console.log('❌ 分析工具已禁用');
|
|
263
263
|
|
|
264
264
|
}
|
|
265
265
|
|
|
@@ -267,7 +267,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
267
267
|
* 启用功能Cookie(如实时聊天、语言偏好)
|
|
268
268
|
*/
|
|
269
269
|
function enableFunctional() {
|
|
270
|
-
console.log('✅ 功能Cookie已启用');
|
|
270
|
+
// console.log('✅ 功能Cookie已启用');
|
|
271
271
|
|
|
272
272
|
}
|
|
273
273
|
|
|
@@ -275,7 +275,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
275
275
|
* 禁用功能Cookie
|
|
276
276
|
*/
|
|
277
277
|
function disableFunctional() {
|
|
278
|
-
console.log('❌ 功能Cookie已禁用');
|
|
278
|
+
// console.log('❌ 功能Cookie已禁用');
|
|
279
279
|
|
|
280
280
|
}
|
|
281
281
|
|
|
@@ -283,7 +283,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
283
283
|
* 启用营销工具(如Facebook Pixel)
|
|
284
284
|
*/
|
|
285
285
|
function enableMarketing() {
|
|
286
|
-
console.log('✅ 营销工具已启用');
|
|
286
|
+
// console.log('✅ 营销工具已启用');
|
|
287
287
|
|
|
288
288
|
}
|
|
289
289
|
|
|
@@ -291,7 +291,7 @@ export const GET:APIRoute = ({site, locals}) => {
|
|
|
291
291
|
* 禁用营销工具
|
|
292
292
|
*/
|
|
293
293
|
function disableMarketing() {
|
|
294
|
-
console.log('❌ 营销工具已禁用');
|
|
294
|
+
// console.log('❌ 营销工具已禁用');
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
// ==================== 事件处理函数 ====================
|