7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
|
import fs from "fs";
|
||
|
|
||
|
const imageBase64 = fs.readFileSync(
|
||
|
"./../public/images/unique-tokens-icon.png",
|
||
|
"base64"
|
||
|
);
|