Files
twenty/packages/twenty-website-new/next.config.ts
T
Abdullah. 3a1e112b86 Fixes and updates to the website. (#19350)
This PR implements a whole lot of fixes and updates to the website. It
adds a release-notes page, terms and conditions page, privacy policy
page, while fixing HomeStepper, ProductStepper, and WhyTwentyStepper. 3D
models still need to be styled and their sizes need to be fixed.
2026-04-06 09:42:30 +02:00

22 lines
448 B
TypeScript

import withLinaria, { type LinariaConfig } from 'next-with-linaria';
const nextConfig: LinariaConfig = {
images: {
remotePatterns: [
{
hostname: 'avatars.githubusercontent.com',
pathname: '/**',
protocol: 'https',
},
{
hostname: 'twenty-icons.com',
pathname: '/**',
protocol: 'https',
},
],
},
reactCompiler: true,
};
module.exports = withLinaria(nextConfig);