bbuddy-ui/next.config.js

20 lines
376 B
JavaScript

// @ts-check
const withNextIntl = require('next-intl/plugin')();
const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
compiler: {
styledComponents: {
ssr: true,
displayName: true,
namespace: 'bbuddy'
}
},
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
}
};
module.exports = withNextIntl(nextConfig);