Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cors.ts 240 B

12345678
  1. import FastifyCors, { FastifyCorsOptions } from 'fastify-cors';
  2. import fp from 'fastify-plugin';
  3. export default fp<FastifyCorsOptions>(async (fastify, opts) => {
  4. fastify.register(FastifyCors, {
  5. origin: process.env.APP_BASE_URL,
  6. })
  7. });