Skip to content

Commit 3b70f6c

Browse files
committed
chore: fix blabsy version
1 parent fc98c2e commit 3b70f6c

File tree

5 files changed

+54
-374
lines changed

5 files changed

+54
-374
lines changed

platforms/blabsy/env.development

Lines changed: 0 additions & 31 deletions
This file was deleted.

platforms/blabsy/next.config.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/** @type {import('next').NextConfig} */
2-
const nextConfig = {
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
34
reactStrictMode: true,
45
swcMinify: true,
56
images: {
@@ -11,4 +12,4 @@ const nextConfig = {
1112
output: 'standalone',
1213
};
1314

14-
module.exports = nextConfig;
15+
export default nextConfig;

platforms/blabsy/next.config.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
reactStrictMode: true,
5+
images: {
6+
unoptimized: true
7+
},
8+
eslint: {
9+
ignoreDuringBuilds: true
10+
},
11+
output: 'standalone',
12+
};
13+
14+
export default nextConfig;

platforms/blabsy/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"firebase": "^9.9.4",
2424
"firebase-admin": "^13.4.0",
2525
"motion": "^12.0.0",
26-
"next": "^12.3.0",
27-
"react": "18.2.0",
28-
"react-dom": "18.2.0",
26+
"next": "15.4.2",
27+
"react": "18.3.1",
28+
"react-dom": "18.3.1",
2929
"react-hot-toast": "^2.3.0",
3030
"react-qr-code": "^2.0.15",
3131
"react-textarea-autosize": "^8.3.4",
@@ -37,14 +37,14 @@
3737
"@testing-library/react": "^13.3.0",
3838
"@testing-library/user-event": "^13.5.0",
3939
"@types/node": "18.6.4",
40-
"@types/react": "18.2.79",
41-
"@types/react-dom": "18.2.25",
40+
"@types/react": "18.3.1",
41+
"@types/react-dom": "18.3.1",
4242
"@typescript-eslint/eslint-plugin": "^5.32.0",
4343
"@typescript-eslint/parser": "^5.32.0",
4444
"autoprefixer": "^10.4.8",
4545
"concurrently": "^8.2.1",
4646
"eslint": "8.21.0",
47-
"eslint-config-next": "12.2.4",
47+
"eslint-config-next": "15.4.2",
4848
"eslint-import-resolver-typescript": "^3.4.0",
4949
"eslint-plugin-import": "^2.26.0",
5050
"husky": "^8.0.1",

0 commit comments

Comments
 (0)