useLightningcss

Rustで書かれた高速なCSSバンドラーおよびミニファイアである Lightning CSS の実験的サポートを提供します。

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