next.config.ts 439 B

123456789101112131415161718192021
  1. import {NextConfig} from 'next';
  2. import createNextIntlPlugin from 'next-intl/plugin';
  3. const withNextIntl = createNextIntlPlugin({
  4. experimental: {
  5. createMessagesDeclaration: './messages/en.json'
  6. }
  7. });
  8. const config: NextConfig = {
  9. // basePath: '/activity',
  10. // assetPrefix: '/activity/',
  11. // images: {
  12. // unoptimized: true
  13. // }
  14. typescript: {
  15. ignoreBuildErrors: true,
  16. },
  17. };
  18. export default withNextIntl(config);