useLightningcss

دعم تجريبي لاستخدام Lightning CSS، وهو أداة تجميع وتصغير سريعة لـ CSS مكتوبة بلغة 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