SPB Git forge
7commits 1branches 0releases
229.0 KBsize
maindefault branch
12 days agolast push
TypeScript 91.8% HTML 3.2% JavaScript 3% SQL 1.4% CSS 0.7%
520 B · 14 lines typescript
Raw Blame History
1import type { NextConfig } from "next";23const nextConfig: NextConfig = {4  reactStrictMode: true,5  poweredByHeader: false,6  images: { unoptimized: true },7  experimental: { serverActions: { allowedOrigins: ["www.socialcrawl.co", "socialcrawl.co", "localhost:8351"] } },8  async headers() {9    return [{ source: "/(.*)", headers: [{ key: "X-Frame-Options", value: "DENY" }, { key: "X-Content-Type-Options", value: "nosniff" }, { key: "Referrer-Policy", value: "same-origin" }] }];10  },11};1213export default nextConfig;14