Home / Companies / Vercel / Blog / October 2023

October 2023 Summaries

7 posts from Vercel

Filter
Month: Year:
Post Summaries Back to Blog
We've optimized package imports in Next.js, improving both local development performance and production cold starts for users of large icon or component libraries. By analyzing entry files on the fly and automatically mapping all imports, we've seen 40% faster cold boots and 28% faster builds. This change was needed due to the hidden cost of importing thousands of unneeded modules from barrel files, which can slow down both local development and production performance. Our new solution, `optimizePackageImports`, is more efficient than tree-shaking and handles recursive barrel files, resulting in improved performance improvements for users.
Oct 13, 2023 1,222 words in the original blog post.
Today, we're excited to announce the transition of our v0 product from Alpha to Beta, providing access to 5,000 additional users and introducing subscription plans for those who want to unlock the full feature set. Our goal is to help developers build their first iteration of a product with Generative UI, combining frontend development best practices with generative AI. With over 100,000 people registering on our waitlist in just three weeks, we're thrilled to see the interest in v0 and look forward to continuing to evolve the product with new features like support for custom design systems, theming, transforming images to code, and further security and access controls.
Oct 11, 2023 338 words in the original blog post.
Tekla, a Copenhagen-based bedding brand, has evolved its ecommerce platform using Vercel and Medusa to provide speed, top performance, and flexibility to its global customers. With the help of digital design and development agency Agilo, Tekla upgraded its composable setup, moving from Gatsby Cloud to Vercel and WooCommerce to Medusa, which resulted in better site performance, improved customer experience, and faster web deployments. The team plans to adopt Next.js soon for even more efficient web applications. By leveraging the strengths of Vercel, Medusa, and Next.js, Tekla can now deliver personalized digital experiences without compromising speed or performance, ultimately driving higher engagement and sales.
Oct 11, 2023 459 words in the original blog post.
Unhappy developers not only negatively impact an organization's productivity but also result in quantifiable losses. Attracting top talent is becoming increasingly challenging due to a growing demand for skilled software developers, with the industry expected to see a 25% increase by 2031. The cost of recruitment and onboarding can be substantial, ranging from $22,000 to $32,000, while unfilled roles or contractor costs can exceed $60,000 in productivity loss. To improve business outcomes, it's essential to focus on developer experience, which is crucial as a competitive advantage for any software product.
Oct 10, 2023 154 words in the original blog post.
Understanding the nuances of various image formats and their technical attributes can be challenging, especially with the rise of web graphics. Image compression reduces file size without significantly degrading visual quality, and there are two main types: lossy and lossless compression. Pixel density refers to pixels per unit display area, while resolution is the total count of pixels in an image's width and height. Bit depth determines color information stored for each pixel, with higher depths allowing more colors but larger file sizes. Chroma subsampling reduces chrominance channels' resolution relative to luminance, affecting compression ratios and quality. Image formats like JPEG, PNG, WebP, and AVIF have different features and use cases, such as baseline and progressive loading, transparency, and metadata. Choosing the right format can significantly impact user experience by balancing image fidelity with file size, taking into account factors like pixel density, bit depth, and chroma subsampling, as well as privacy concerns related to metadata.
Oct 10, 2023 2,388 words in the original blog post.
Vercel has introduced new controls to help developers manage their serverless infrastructure spend, including real-time usage alerts, SMS notifications, and project pausing capabilities. The feature aims to provide more control over usage and spend, allowing developers to set defined amounts for notifications and pause projects when necessary. This move follows customer feedback and is designed to prevent unexpected bills due to unforced errors or traffic spikes. With Spend Management, Vercel users can now receive notifications when their spend approaches or exceeds a set amount, as well as take action through webhooks to pause or resume their projects. The feature also includes safe defaults for serverless functions with higher max durations and flexible webhooks to instantly take action on real-time usage updates.
Oct 05, 2023 650 words in the original blog post.
The SameSite cookie attribute is a security measure that helps protect user privacy by controlling when cookies are sent in cross-site requests. Cookies are small data pieces that web browsers save on user devices, helping websites remember things about users. The SameSite attribute can be set to Strict, Lax, or None, with each setting offering varying levels of control over cookie usage. Setting the attribute to Strict ensures high security, while Lax strikes a balance between usability and security. Using SameSite=None requires marking the cookie as Secure, and is often used for cross-site tracking or Single Sign-On systems. Developers can choose the right configuration based on their specific use case to ensure a better user experience while maintaining web security.
Oct 02, 2023 568 words in the original blog post.