Supabase edge function Deno oak 사용시 설정공부방/Supabase2024. 4. 22. 21:43
Table of Contents
Supabase edge function 을 사용하여 프로젝트를 설정하였고,
oak를 사용한다면
Router prefix를 설정해 주어야 해요.
만약 edge function 이름을 Test 라고 지었다면
아래처럼 설정 해주세요.
const router = new Router({ prefix: "/Test" })
import { Application, Router } from 'https://deno.land/x/oak@v11.1.0/mod.ts'
import { route } from 'https://deno.land/x/oak@v16.0.0/middleware/serve.ts';
const router = new Router({ prefix: "/Test" })
router
// Note: path should be prefixed with function name
.get('/oak-server', (context) => {
context.response.body = 'This is an example Oak server running on Edge Functions!'
})
const app = new Application()
app.use(router.routes())
app.use(router.allowedMethods())
await app.listen({ port: 8000 })
반응형
'공부방 > Supabase' 카테고리의 다른 글
Invite user for supabase project (0) | 2024.04.30 |
---|---|
Supabase storage public url 주의사항 (1) | 2024.04.30 |
Supabase edge function deploy error supabaseUrl is required (0) | 2024.04.29 |
Supabase edge function insert data (0) | 2024.04.16 |
Supabase edge function 사용하기 (0) | 2024.04.06 |
@soycrab :: 꿀맛코딩
행복한 코딩을 위하여!
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!