Initial commit
This commit is contained in:
13
apps/web/next.config.ts
Normal file
13
apps/web/next.config.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { NextConfig } from 'next';
|
||||
import createNextIntlPlugin from 'next-intl/plugin';
|
||||
|
||||
const withNextIntl = createNextIntlPlugin('./i18n/request.ts');
|
||||
|
||||
const config: NextConfig = {
|
||||
experimental: {
|
||||
// Enables importing packages that export CSS directly
|
||||
optimizePackageImports: ['@dwellops/ui'],
|
||||
},
|
||||
};
|
||||
|
||||
export default withNextIntl(config);
|
||||
Reference in New Issue
Block a user