From b4658b6694585cbaf06f9a7da8fc4520bda26fe9 Mon Sep 17 00:00:00 2001 From: Horus AI Date: Mon, 13 Apr 2026 18:44:52 +0200 Subject: [PATCH] fix: add assetPrefix for /autojobs/ path --- frontend/next.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 frontend/next.config.mjs diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs new file mode 100644 index 0000000..b34f088 --- /dev/null +++ b/frontend/next.config.mjs @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + assetPrefix: '/autojobs/', +} + +export default nextConfig \ No newline at end of file