Worker build updates
This commit is contained in:
parent
45c80ca98a
commit
0cf1c3b8fd
64 changed files with 4216 additions and 3450 deletions
|
|
@ -0,0 +1 @@
|
|||
export { receiveMessage as POST } from "@link-stack/bridge-ui";
|
||||
1
apps/link/app/api/[service]/bots/[token]/route.ts
Normal file
1
apps/link/app/api/[service]/bots/[token]/route.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { getBot as GET } from "@link-stack/bridge-ui";
|
||||
1
apps/link/app/api/[service]/bots/[token]/send/route.ts
Normal file
1
apps/link/app/api/[service]/bots/[token]/send/route.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { sendMessage as POST } from "@link-stack/bridge-ui";
|
||||
3
apps/link/app/api/[service]/webhooks/route.ts
Normal file
3
apps/link/app/api/[service]/webhooks/route.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { handleWebhook } from "@link-stack/bridge-ui";
|
||||
|
||||
export { handleWebhook as GET, handleWebhook as POST };
|
||||
|
|
@ -79,5 +79,7 @@ export default withAuth(checkRewrites, {
|
|||
});
|
||||
|
||||
export const config = {
|
||||
matcher: ["/((?!ws|wss|_next/static|_next/image|favicon.ico).*)"],
|
||||
matcher: [
|
||||
"/((?!ws|wss|api/signal|api/whatsapp|api/facebook|_next/static|_next/image|favicon.ico).*)",
|
||||
],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue