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({
|
2024-02-17 19:58:23 +00:00
|
|
|
accessKey: process.env.UNSPLASH_ACCESS_KEY!,
|
2024-02-15 02:30:10 +00:00
|
|
|
fetch: fetch,
|
2024-02-16 01:49:19 +00:00
|
|
|
});
|