spb/earth-now Public License
earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.
TypeScript 93%
Shell 2.3%
SQL 1.4%
JavaScript 1.3%
Dockerfile 1.2%
CSS 0.8%
1/**2 * earth-now.co3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File: apps/web/next.config.mjs6 * Purpose: Minimal Next.js configuration for the earth-now dashboard (transpile the shared counter runtime)7 */89/** @type {import('next').NextConfig} */10const nextConfig = {11 reactStrictMode: true,12 transpilePackages: ["@earth-now/counter"],13};1415export default nextConfig;16