Skip to content

Commit 993fc8c

Browse files
committed
chore: testing with canary
1 parent c8f9edb commit 993fc8c

File tree

17 files changed

+360
-361
lines changed

17 files changed

+360
-361
lines changed

apps/insights/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/insights/next.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
const config = {
22
experimental: {
33
useCache: true,
4+
cacheComponents: true,
5+
// dynamicIO: true,
46
reactCompiler: true,
57
},
68

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export { ChartPage as default } from "../../../../components/PriceFeed/chart-page";
22

3-
export const revalidate = 3600;
3+
// export const revalidate = 3600;

apps/insights/src/app/price-feeds/[slug]/layout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ export const generateMetadata = async ({
3333
: notFound();
3434
};
3535

36-
export const revalidate = 3600;
36+
// export const revalidate = 3600;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export { Publishers as default } from "../../../../components/PriceFeed/publishers";
22

3-
export const revalidate = 3600;
3+
// export const revalidate = 3600;

apps/insights/src/app/price-feeds/page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Metadata } from "next";
22

33
export { PriceFeeds as default } from "../../components/PriceFeeds";
44

5-
export const revalidate = 3600;
5+
// export const revalidate = 3600;
66

77
export const metadata: Metadata = {
88
title: {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export { Performance as default } from "../../../../../components/Publisher/performance";
22

3-
export const revalidate = 3600;
3+
// export const revalidate = 3600;

apps/insights/src/app/publishers/[cluster]/[key]/layout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ export const generateMetadata = async ({
2222
};
2323
};
2424

25-
export const revalidate = 3600;
25+
// export const revalidate = 3600;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export { PriceFeeds as default } from "../../../../../components/Publisher/price-feeds";
22

3-
export const revalidate = 3600;
3+
// export const revalidate = 3600;

apps/insights/src/app/publishers/page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Metadata } from "next";
22
export { Publishers as default } from "../../components/Publishers";
33

4-
export const revalidate = 3600;
4+
// export const revalidate = 3600;
55

66
export const metadata: Metadata = {
77
title: {

0 commit comments

Comments
 (0)