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