Add comprehensive analytics system with: - Analytics data layer (aggregator, metrics, trends, cache) - 6 API endpoints (overview, plants, transport, farms, sustainability, export) - 6 chart components (LineChart, BarChart, PieChart, AreaChart, Gauge, Heatmap) - 5 dashboard widgets (KPICard, TrendIndicator, DataTable, DateRangePicker, FilterPanel) - 5 dashboard pages (overview, plants, transport, farms, sustainability) - Export functionality (CSV, JSON) Dependencies added: recharts, d3, date-fns Also includes minor fixes: - Fix EnvironmentalForm spread type error - Fix AgentOrchestrator Map iteration issues - Fix next.config.js image domains undefined error - Add downlevelIteration to tsconfig
28 lines
526 B
JavaScript
28 lines
526 B
JavaScript
module.exports = {
|
|
swcMinify: true,
|
|
i18n: {
|
|
locales: ["en", "es"],
|
|
defaultLocale: "en",
|
|
},
|
|
images: {
|
|
domains: process.env.NEXT_IMAGE_DOMAIN ? [process.env.NEXT_IMAGE_DOMAIN] : [],
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/blog",
|
|
destination: "/blog/page/0",
|
|
},
|
|
{
|
|
source: "/es",
|
|
destination: "/es/home",
|
|
locale: false,
|
|
},
|
|
{
|
|
source: "/en/principal",
|
|
destination: "/",
|
|
locale: false,
|
|
},
|
|
]
|
|
},
|
|
}
|