Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sandoche/other fixes #54

Merged
merged 10 commits into from
Sep 13, 2024
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const nextConfig = {
protocol: 'https',
hostname: 'raw.githubusercontent.com',
port: '',
pathname: 'm/evmos/chain-token-registry/main/assets/tokens/',
pathname: '/evmos/chain-token-registry/main/assets/tokens/',
},
],
},
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/v1/indexer/auction-end-events/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,5 @@ export async function GET() {
return Response.json({ error: 'Failed to index auction end events' }, { status: 500 });
}
}

export const dynamic = 'force-dynamic';
2 changes: 2 additions & 0 deletions src/app/api/v1/indexer/bid-events/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ export async function GET() {
return Response.json({ error: 'Failed to index bid events' }, { status: 500 });
}
}

export const dynamic = 'force-dynamic';
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,5 @@ const RootLayout = ({
};

export default RootLayout;

export const dynamic = 'force-dynamic';
Loading