i try to upload to plesk server and it was not succesfull

This commit is contained in:
Leon Serfaty G
2025-07-19 15:25:31 +00:00
parent f5e94bf039
commit b76754d151
3 changed files with 22 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ import type {NextConfig} from 'next';
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
output: 'standalone',
typescript: { typescript: {
ignoreBuildErrors: true, ignoreBuildErrors: true,
}, },
+19
View File
@@ -35,6 +35,7 @@
"better-sqlite3": "^11.1.2", "better-sqlite3": "^11.1.2",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0", "date-fns": "^3.6.0",
"dotenv": "^16.5.0", "dotenv": "^16.5.0",
"embla-carousel-react": "^8.6.0", "embla-carousel-react": "^8.6.0",
@@ -5274,6 +5275,24 @@
"node": ">= 0.10" "node": ">= 0.10"
} }
}, },
"node_modules/cross-env": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
"integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.1"
},
"bin": {
"cross-env": "src/bin/cross-env.js",
"cross-env-shell": "src/bin/cross-env-shell.js"
},
"engines": {
"node": ">=10.14",
"npm": ">=6",
"yarn": ">=1"
}
},
"node_modules/cross-spawn": { "node_modules/cross-spawn": {
"version": "7.0.6", "version": "7.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+2 -1
View File
@@ -7,7 +7,7 @@
"genkit:dev": "genkit start -- tsx src/ai/dev.ts", "genkit:dev": "genkit start -- tsx src/ai/dev.ts",
"genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts", "genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts",
"build": "next build", "build": "next build",
"start": "next start", "start": "cross-env-shell PORT=${PORT:=3000} next start",
"lint": "next lint", "lint": "next lint",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"db:seed": "tsx scripts/seed.ts" "db:seed": "tsx scripts/seed.ts"
@@ -40,6 +40,7 @@
"better-sqlite3": "^11.1.2", "better-sqlite3": "^11.1.2",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0", "date-fns": "^3.6.0",
"dotenv": "^16.5.0", "dotenv": "^16.5.0",
"embla-carousel-react": "^8.6.0", "embla-carousel-react": "^8.6.0",