3a1e112b86
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.
22 lines
448 B
TypeScript
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);
|