useLightlightningcss
Soporte experimental para usar Lightning CSS, un empaquetador y minificador de CSS rápido, escrito en Rust.
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
experimental: {
useLightningcss: true,
},
}
export default nextConfig
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
useLightningcss: true,
},
}
module.exports = nextConfig