mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-07 03:32:51 +00:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
|
import { createApi } from "unsplash-js";
|
||
|
|
||
|
export const unsplash = createApi({
|
||
|
accessKey: process.env.NEXT_PUBLIC_UNSPLASH_ACCESS_KEY!,
|
||
|
fetch: fetch,
|
||
|
});
|