ente/web/apps/payments/next.config.js
Manav Rathi 8f0ef055c5
[web] Make the imported payments code feel at home in the new monorepo
- Use the shared yarn monorepo configuration
- styled-components => emotion (since that's what the rest of the code uses)
- Remove Sentry (since it's gone elsewhere)
2024-03-28 11:40:22 +05:30

19 lines
383 B
JavaScript

// @ts-check
/**
* Configuration for the Next.js build
*
* See also:
* - packages/next/next.config.base.js
* - https://nextjs.org/docs/pages/api-reference/next-config-js
*
* @type {import("next").NextConfig}
*/
const nextConfig = {
/* generate a static export when we run `next build` */
output: "export",
reactStrictMode: true,
};
module.exports = nextConfig;