tasko/lib/unsplash.ts

7 lines
157 B
TypeScript
Raw Normal View History

2024-02-16 01:49:19 +00:00
import { createApi } from 'unsplash-js';
2024-02-15 02:30:10 +00:00
export const unsplash = createApi({
accessKey: process.env.NEXT_PUBLIC_UNSPLASH_ACCESS_KEY!,
fetch: fetch,
2024-02-16 01:49:19 +00:00
});