Compare commits

...

3 Commits

Author SHA1 Message Date
da156e9cd7 Merge pull request '1.1' (#5) from 1.1 into main
Reviewed-on: #5
2026-01-16 20:37:50 +02:00
a5e9072b9d updated version 1.1.3 - updated hostname 2026-01-16 20:37:19 +02:00
ca6d2d7abe bbbbb 2026-01-16 20:36:21 +02:00
58 changed files with 15 additions and 72 deletions

View File

@@ -1,3 +0,0 @@
{
"pages": {}
}

View File

@@ -1,16 +0,0 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [],
"pages": {
"/_app": []
},
"ampFirstPages": []
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +0,0 @@
{"type": "commonjs"}

View File

@@ -1 +0,0 @@
{}

View File

@@ -1 +0,0 @@
{}

View File

@@ -1 +0,0 @@
self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]"

View File

@@ -1,18 +0,0 @@
self.__BUILD_MANIFEST = {
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [],
"rootMainFiles": [],
"pages": {
"/_app": []
},
"ampFirstPages": []
};
self.__BUILD_MANIFEST.lowPriorityFiles = [
"/static/" + process.env.__NEXT_BUILD_ID + "/_buildManifest.js",
,"/static/" + process.env.__NEXT_BUILD_ID + "/_ssgManifest.js",
];

View File

@@ -1,6 +0,0 @@
{
"version": 3,
"middleware": {},
"functions": {},
"sortedMiddleware": []
}

View File

@@ -1 +0,0 @@
self.__REACT_LOADABLE_MANIFEST="{}"

View File

@@ -1 +0,0 @@
self.__NEXT_FONT_MANIFEST="{\"pages\":{},\"app\":{},\"appUsingSizeAdjust\":false,\"pagesUsingSizeAdjust\":false}"

View File

@@ -1 +0,0 @@
{"pages":{},"app":{},"appUsingSizeAdjust":false,"pagesUsingSizeAdjust":false}

View File

@@ -1 +0,0 @@
{}

View File

@@ -1 +0,0 @@
self.__RSC_SERVER_MANIFEST="{\n \"node\": {},\n \"edge\": {},\n \"encryptionKey\": \"process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY\"\n}"

View File

@@ -1,5 +0,0 @@
{
"node": {},
"edge": {},
"encryptionKey": "4wbouw6RrCkiRBuhNA0RdY1ZJ0IOxBnrfMXrawt4S9g="
}

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
self.__BUILD_MANIFEST = {__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},sortedPages:["\u002F_app"]};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()

View File

@@ -1 +0,0 @@
self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
{"type": "module"}

View File

@@ -1,9 +1,15 @@
import { NextResponse } from "next/server"
import os from "os"
export const dynamic = "force-dynamic"
export const revalidate = 0
export async function GET() {
try {
return NextResponse.json({ instance: os.hostname() })
return NextResponse.json(
{ instance: os.hostname() },
{ headers: { "Cache-Control": "no-store" } },
)
} catch (error) {
console.error("Instance fetch error:", error)
return NextResponse.json({ error: "Failed to load instance name." }, { status: 500 })

View File

@@ -1,9 +1,12 @@
import type React from "react"
import type { Metadata } from "next"
import { Inter } from "next/font/google"
import { IBM_Plex_Sans_Hebrew } from "next/font/google"
import "./globals.css"
const inter = Inter({ subsets: ["latin"] })
const ibmPlexSansHebrew = IBM_Plex_Sans_Hebrew({
subsets: ["hebrew"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
})
export const metadata: Metadata = {
title: 'ממ"ד',
@@ -22,7 +25,7 @@ export default function RootLayout({
}) {
return (
<html lang="he" dir="rtl">
<body className={inter.className}>{children}</body>
<body className={ibmPlexSansHebrew.className}>{children}</body>
</html>
)
}

View File

@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
APPVERSION: '1.1.2'
APPVERSION: '1.1.3'
},
experimental: {
serverComponentsExternalPackages: ['mysql2']

View File

@@ -1,6 +1,6 @@
{
"name": "mamad-app",
"version": "1.0.4",
"version": "1.1.3",
"private": true,
"scripts": {
"build": "next build",

View File

@@ -2,9 +2,6 @@
@tailwind components;
@tailwind utilities;
body {
font-family: Arial, Helvetica, sans-serif;
}
@layer utilities {
.text-balance {