This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="item">Item 1</div> | |
| <div class="item">Item 2</div> | |
| <div class="item">Item 3</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="item">Item 1</div> | |
| <div class="item">Item 2</div> | |
| <div class="item">Item 3</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { next } from "@vercel/edge" | |
| export default async function middleware(req: Request) { | |
| const userAgent = req.headers.get("user-agent") | |
| console.log("userAgent", userAgent) | |
| console.log("req", req) | |
| if (req.url.includes("/robots.txt")) { | |
| return next() | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI/CD | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - staging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Stripe, { | |
| CheckoutSessionCreateParams, | |
| } from "https://esm.sh/[email protected]?target=deno" | |
| import { | |
| IS_PRODUCTION, | |
| STRIPE_LOCAL_SECRET_KEY, | |
| STRIPE_LIVE_SECRET_KEY, | |
| } from "../_shared/constants.ts" | |
| import { StripeAction } from "../_shared/enums.ts" |
OlderNewer