TypeScript 93.3%
JavaScript 4.4%
CSS 2.3%
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