File size: 148 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import "server-only";
export const token = process.env.SANITY_API_READ_TOKEN;
if (!token) {
throw new Error("Missing SANITY_API_READ_TOKEN");
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import "server-only";
export const token = process.env.SANITY_API_READ_TOKEN;
if (!token) {
throw new Error("Missing SANITY_API_READ_TOKEN");
}
|