16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
|
// @ts-check
|
||
|
const withNextIntl = require('next-intl/plugin')();
|
||
|
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
compiler: {
|
||
|
styledComponents: {
|
||
|
ssr: true,
|
||
|
displayName: true,
|
||
|
namespace: 'bbuddy'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = withNextIntl(nextConfig);
|