/** * earth-now.co * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: apps/web/next.config.mjs * Purpose: Minimal Next.js configuration for the earth-now dashboard (transpile the shared counter runtime) */ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, transpilePackages: ["@earth-now/counter"], }; export default nextConfig;