|
// @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);
|