| 123456789101112131415161718192021 |
- import {NextConfig} from 'next';
- import createNextIntlPlugin from 'next-intl/plugin';
- const withNextIntl = createNextIntlPlugin({
- experimental: {
- createMessagesDeclaration: './messages/en.json'
- }
- });
- const config: NextConfig = {
- // basePath: '/activity',
- // assetPrefix: '/activity/',
- // images: {
- // unoptimized: true
- // }
- typescript: {
- ignoreBuildErrors: true,
- },
- };
- export default withNextIntl(config);
|