17 lines
339 B
Markdown
17 lines
339 B
Markdown
# @mintel/next-config
|
|
|
|
Shared Next.js configuration wrapper for Mintel projects. Integrates `next-intl` and Sentry by default.
|
|
|
|
## Usage
|
|
|
|
In your `next.config.ts`:
|
|
```typescript
|
|
import mintelNextConfig from "@mintel/next-config";
|
|
|
|
const nextConfig = {
|
|
// Your project specific config
|
|
};
|
|
|
|
export default mintelNextConfig(nextConfig);
|
|
```
|