SPB Git forge

spb/websensor

Public
33commits 1branches 0releases
3.4 MBsize
maindefault branch
10 days agolast push
TypeScript 55.4% Python 43.2% SQL 1.2%
624 B · 24 lines typescript
Raw Blame History
1import type { NextConfig } from "next";23const nextConfig: NextConfig = {4  reactStrictMode: true,5  agentRules: false,6  poweredByHeader: false,7  transpilePackages: ["@websensor/core"],8  async headers() {9    return [10      {11        source: "/(.*)",12        headers: [13          { key: "X-Content-Type-Options", value: "nosniff" },14          { key: "X-Frame-Options", value: "DENY" },15          { key: "Referrer-Policy", value: "strict-origin-when-cross-origin" },16          { key: "Permissions-Policy", value: "camera=(), microphone=(), geolocation=()" },17        ],18      },19    ];20  },21};2223export default nextConfig;24