create-next15-tailwind4-guibus-template
Version:
CLI para criar um projeto Next.js 15 + Tailwind 4 rapidamente
21 lines (18 loc) • 396 B
text/typescript
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
cleanDistDir: true,
poweredByHeader: false,
reactStrictMode: true,
images: {
formats: ["image/avif", "image/webp"],
remotePatterns: [
{
protocol: 'https',
hostname: '**',
port: '',
pathname: '**',
},
],
},
};
export default nextConfig;