You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

next.config.js 499B

12345678910111213141516171819
  1. /** @type {import('next').NextConfig} */
  2. const { i18n } = require('./next-i18next.config');
  3. const nextConfig = {
  4. images: {
  5. domains: ['www.business2community.com'],
  6. },
  7. env: {
  8. NEXT_PUBLIC_STRIPE_PUBLIC_API_KEY:
  9. process.env.NEXT_PUBLIC_STRIPE_PUBLIC_API_KEY,
  10. NEXT_PUBLIC_MAP_KEY: process.env.NEXT_PUBLIC_NEXT_PUBLIC_MAP_KEY,
  11. NEXT_PUBLIC_SEND_GRID: process.env.NEXT_PUBLIC_SEND_GRID,
  12. },
  13. reactStrictMode: true,
  14. swcMinify: true,
  15. i18n,
  16. };
  17. module.exports = nextConfig;