bbuddy-ui/next.config.js

16 lines
276 B
JavaScript
Raw Normal View History

2023-12-21 21:22:13 +00:00
// @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);