Procházet zdrojové kódy

update

tags/Baseline_30082024_FRONTEND_UAT
Terence před 1 rokem
rodič
revize
52eeb27a4c
3 změnil soubory, kde provedl 9 přidání a 2 odebrání
  1. +1
    -1
      .env.production
  2. +1
    -0
      .eslintrc.json
  3. +7
    -1
      next.config.js

+ 1
- 1
.env.production Zobrazit soubor

@@ -1,4 +1,4 @@
API_HOST=tsms-uat.2fi-solutions.com
API_PORT=8090
API_PORT=80
API_PROTOCOL=https
NEXTAUTH_SECRET=secret

+ 1
- 0
.eslintrc.json Zobrazit soubor

@@ -4,6 +4,7 @@
"rules": {
"prettier/prettier": "warn",
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-unused-vars": "warn"
}
}

+ 7
- 1
next.config.js Zobrazit soubor

@@ -1,4 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
// eslint: {
// // Warning: This allows production builds to successfully complete even if
// // your project has ESLint errors.
// ignoreDuringBuilds: true,
// },
}

module.exports = nextConfig

Načítá se…
Zrušit
Uložit