From 13c519334402364a55d15b2898a7926caf5f43f4 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Thu, 8 May 2025 08:50:30 -0400 Subject: [PATCH] Fix Next config to match example Dockerfile expectations --- frontend/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 frontend/next.config.js diff --git a/frontend/next.config.js b/frontend/next.config.js new file mode 100644 index 0000000..5aa360e --- /dev/null +++ b/frontend/next.config.js @@ -0,0 +1,4 @@ +/** @type {import('next').NextConfig} */ +module.exports = { + output: 'standalone' +}