repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** @type {import('next').NextConfig} */ |
| #2 | const nextConfig = { |
| #3 | async rewrites() { |
| #4 | return [ |
| #5 | { |
| #6 | source: "/api/:path*", |
| #7 | destination: "http://backend:8000/api/:path*", |
| #8 | }, |
| #9 | ]; |
| #10 | }, |
| #11 | reactStrictMode: true, |
| #12 | experimental: { |
| #13 | proxyTimeout: 6000000, |
| #14 | }, |
| #15 | webpack(config) { |
| #16 | config.module.rules.push({ |
| #17 | test: /\.svg$/i, |
| #18 | issuer: /\.[jt]sx?$/, |
| #19 | use: ["@svgr/webpack"], |
| #20 | }); |
| #21 | |
| #22 | return config; |
| #23 | }, |
| #24 | }; |
| #25 | |
| #26 | module.exports = nextConfig; |
| #27 |