rsnext/examples/cms-sanity/next.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
241 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
module.exports = {
experimental: {
// Used to guard against accidentally leaking SANITY_API_READ_TOKEN to the browser
taint: true,
},
logging: {
fetches: { fullUrl: false },
},
};