Skip to main content
Glama
northernvariables

FedMCP - Federal Parliamentary Information

next.config.mjs1.9 kB
import createNextIntlPlugin from 'next-intl/plugin'; const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts'); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, // Output mode for production builds (standalone for Docker) output: 'standalone', // Environment variables exposed to browser env: { NEXT_PUBLIC_GRAPHQL_URL: process.env.NEXT_PUBLIC_GRAPHQL_URL, }, // Webpack configuration webpack: (config, { dev }) => { if (dev) { // Increase chunk load timeout in development config.output.chunkLoadTimeout = 120000; // 2 minutes } return config; }, // Image optimization images: { remotePatterns: [ { protocol: 'https', hostname: 'storage.googleapis.com', pathname: '/canada-gpt-ca-mp-photos/**', }, { protocol: 'https', hostname: 'storage.googleapis.com', pathname: '/canada-gpt-ca-assets/**', }, { protocol: 'https', hostname: 'lh3.googleusercontent.com', }, { protocol: 'https', hostname: 'avatars.githubusercontent.com', }, { protocol: 'https', hostname: 'platform-lookaside.fbsbx.com', }, { protocol: 'https', hostname: 'media.licdn.com', }, ], }, // Experimental features experimental: { optimizeCss: true, }, // Headers for security async headers() { return [ { source: '/(.*)', headers: [ { key: 'X-Frame-Options', value: 'DENY', }, { key: 'X-Content-Type-Options', value: 'nosniff', }, { key: 'Referrer-Policy', value: 'origin-when-cross-origin', }, ], }, ]; }, }; export default withNextIntl(nextConfig);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/northernvariables/FedMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server