TypeScript 55.4%
Python 43.2%
SQL 1.2%
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