Skip to content

Commit 019e5cd

Browse files
fix: resolve frontend config merge conflict
1 parent 1a1f313 commit 019e5cd

3 files changed

Lines changed: 13 additions & 12 deletions

File tree

frontend/next.config.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ import path from "node:path";
22
import type { NextConfig } from "next";
33

44
const nextConfig: NextConfig = {
5-
<<<<<<< HEAD
6-
// The workspace root lives one level above this directory. Pinning it here
7-
// prevents Turbopack from inferring a wrong root when stray package-lock
8-
// files exist outside the repo (e.g. ~/package-lock.json).
5+
output: "standalone",
6+
7+
// The workspace root lives one level above this directory.
8+
// Pin it to prevent Turbopack from inferring the wrong root.
99
turbopack: {
1010
root: path.join(path.dirname(new URL(import.meta.url).pathname), ".."),
1111
},
12-
=======
13-
output: 'standalone',
14-
>>>>>>> 90c0dc1 (docker: optimize backend/frontend images for #1335 (non-root, healthchecks, size reduction - see PR description for details))
12+
1513
// Enable tree-shaking for icon/utility libraries to reduce per-route
1614
// bundle sizes (Issue #1254).
1715
experimental: {
@@ -21,6 +19,7 @@ const nextConfig: NextConfig = {
2119
"@tanstack/react-virtual",
2220
],
2321
},
22+
2423
async redirects() {
2524
return [
2625
{

package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"verify-security": "node scripts/verify-security-setup.js"
1414
},
1515
"devDependencies": {
16+
"@playwright/test": "^1.62.1",
1617
"@vitest/coverage-v8": "^3.2.7",
1718
"husky": "^9.1.7",
1819
"lint-staged": "^17.0.7",

0 commit comments

Comments
 (0)