SPB Git forge

spb/hilmacorp

Public
1commits 1branches 0releases
29.2 MBsize
maindefault branch
19 days agolast push
TypeScript 93.3% JavaScript 4.4% CSS 2.3%
358 B · 16 lines javascript
Raw Blame History
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: next.config.mjs6 * Description: Next.js configuration (strict mode, portable deployment)7 */89/** @type {import('next').NextConfig} */10const nextConfig = {11  reactStrictMode: true,12  poweredByHeader: false,13};1415export default nextConfig;16