10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
const ImageKit = require("imagekit");
|
|
|
|
const imagekit = new ImageKit({
|
|
publicKey: "public_fCQF5nc2un6BY3+6xE6xp/D/c2g=",
|
|
privateKey: "private_yVbKoP1UEScfxTdq68Yu/MY6bFw=",
|
|
urlEndpoint: "https://ik.imagekit.io/fy9xpsxsm",
|
|
});
|
|
|
|
module.exports = imagekit;
|