tasko/lib/unsplash.ts

7 lines
157 B
TypeScript
Raw Normal View History

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