Skip to content

Commit e52b87a

Browse files
committed
chore: fix builds
1 parent a68047c commit e52b87a

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

platforms/blabsy/next.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { NextConfig } from "next";
2+
import path from "path";
23

34
const nextConfig: NextConfig = {
45
reactStrictMode: true,
@@ -9,6 +10,8 @@ const nextConfig: NextConfig = {
910
ignoreDuringBuilds: true
1011
},
1112
output: 'standalone',
13+
distDir: '.next',
14+
outputFileTracingRoot: path.join(__dirname),
1215
};
1316

1417
export default nextConfig;

platforms/eVoting/next.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import type { NextConfig } from "next";
2+
import path from "path";
23

34
const nextConfig: NextConfig = {
45
output: 'standalone',
6+
outputFileTracingRoot: path.join(__dirname),
57
};
68

79
export default nextConfig;
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import type { NextConfig } from "next";
2+
import path from "path";
23

34
const nextConfig: NextConfig = {
45
output: 'standalone',
6+
outputFileTracingRoot: path.join(__dirname),
57
};
68

79
export default nextConfig;

0 commit comments

Comments
 (0)