Use forms with or without client-side JavaScript--no code duplication required!
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

10 строки
162 B

  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: true,
  4. experimental: {
  5. optimizeCss: true,
  6. },
  7. };
  8. module.exports = nextConfig;