rsnext/examples/with-static-export/next.config.js

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

11 lines
134 B
JavaScript
Raw Normal View History

// @ts-check
/**
* @type {import('next').NextConfig}
**/
const nextConfig = {
output: "export",
};
module.exports = nextConfig;