Files
service-aware-frontend/pkgs/ui/next.config.js
Luis-Hebendanz 2fb2a1d22a
All checks were successful
checks-impure / test (pull_request) Successful in 27s
checks / test (pull_request) Successful in 3m18s
Fixed ui openapi.json bug. Reverted buildDir settings
2024-01-23 12:17:29 +01:00

17 lines
369 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
images: { unoptimized: true },
eslint: {
dirs: ["src"],
},
generateBuildId: async () => {
// This could be anything, using the latest git hash
return process.env.NEXT_BUILD_ID;
},
outputFileTracing: true,
reactStrictMode: true,
};
module.exports = nextConfig;