Skip to content

Commit

Permalink
feat: stripe checkout test
Browse files Browse the repository at this point in the history
  • Loading branch information
sejori committed Sep 6, 2023
1 parent d0924a4 commit 041e117
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion utils/ci_precache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ server.use(router)
// these assets are then requested in the precache util
// so all we need to do here is request to pages to kick start the middleware
const pageRoutes = router.routes.filter(route => {
return (!route.path.includes("public") && !route.path.includes("components"))
return (
!route.path.includes("public") &&
!route.path.includes("components") &&
!route.path.includes("/checkout")
) // THIS IS DUMP
})

for (const route of pageRoutes) {
Expand Down

0 comments on commit 041e117

Please sign in to comment.