0729ad27b7
## Summary - Refresh the Twenty website with updated homepage, product, pricing, partner, customer, case study, and release content - Add and replace supporting imagery, illustrations, and Lottie assets used across the site - Adjust layout constants, navigation/footer content, and page-level copy for the updated marketing experience - Update Next.js config and ignore rules to support the new assets and build output ## Testing - Not run (not requested) --------- Co-authored-by: Abdullah <125115953+mabdullahabaid@users.noreply.github.com>
26 lines
556 B
TypeScript
26 lines
556 B
TypeScript
import path from 'path';
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
linaria: {
|
|
configFile: path.resolve(__dirname, 'wyw-in-js.config.cjs'),
|
|
},
|
|
reactCompiler: true,
|
|
};
|
|
|
|
module.exports = withLinaria(nextConfig);
|