Files
cmd
docs
pkg
validation
web
src
.dockerignore
.gitignore
Containerfile
bun.lock
eslint.config.mjs
next.config.ts
package.json
tsconfig.json
.drone.yml
.gitignore
Cargo.lock
Cargo.toml
Containerfile
LICENSE
Makefile
README.md
compose.yaml
generate.go
go.mod
go.sum
openapi-internal.yaml
openapi.yaml
maps-service/web/next.config.ts
2025-04-02 21:20:30 -06:00

20 lines
312 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
distDir: "build",
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "tr.rbxcdn.com",
pathname: "/**",
port: "",
search: "",
},
],
},
};
export default nextConfig;