update the dashbaord

This commit is contained in:
saqib mir
2026-09-09 17:38:43 +05:30
parent a51b18124b
commit 33de435c91
6 changed files with 22 additions and 5 deletions
+3 -3
View File
@@ -4,10 +4,10 @@
NEXT_PUBLIC_APP_NAME="SupportHub Web (Dev)" NEXT_PUBLIC_APP_NAME="SupportHub Web (Dev)"
NEXT_PUBLIC_APP_ENV="development" NEXT_PUBLIC_APP_ENV="development"
NEXT_PUBLIC_APP_URL="https://support-dev.maskantech.in" NEXT_PUBLIC_APP_URL="http://localhost:3000"
NEXT_PUBLIC_API_URL="https://supportdev-api.maskantech.in/api/v1" NEXT_PUBLIC_API_URL="http://localhost:4501"
NEXT_PUBLIC_WS_URL="wss://supportdev-api.maskantech.in/ws" NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws"
NEXT_PUBLIC_SAAS_PLATFORM_NAME="SaaS Parent Platform (Dev)" NEXT_PUBLIC_SAAS_PLATFORM_NAME="SaaS Parent Platform (Dev)"
NEXT_PUBLIC_SAAS_AUTH_HEADER="X-SaaS-User-Token" NEXT_PUBLIC_SAAS_AUTH_HEADER="X-SaaS-User-Token"
+1 -1
View File
@@ -8,7 +8,7 @@ NEXT_PUBLIC_APP_ENV="development"
NEXT_PUBLIC_APP_URL="http://localhost:3000" NEXT_PUBLIC_APP_URL="http://localhost:3000"
# SupportHub Backend API Integration (supporthub-api) # SupportHub Backend API Integration (supporthub-api)
NEXT_PUBLIC_API_URL="http://localhost:4501/api/v1" NEXT_PUBLIC_API_URL="http://localhost:4501"
NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws" NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws"
# SaaS Parent Platform Integration # SaaS Parent Platform Integration
+1 -1
View File
@@ -8,7 +8,7 @@ NEXT_PUBLIC_APP_ENV="development"
NEXT_PUBLIC_APP_URL="http://localhost:3000" NEXT_PUBLIC_APP_URL="http://localhost:3000"
# SupportHub Backend API Integration (supporthub-api) # SupportHub Backend API Integration (supporthub-api)
NEXT_PUBLIC_API_URL="http://localhost:4501/api/v1" NEXT_PUBLIC_API_URL="http://localhost:4501"
NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws" NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws"
# SaaS Parent Platform Integration # SaaS Parent Platform Integration
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
+9
View File
@@ -0,0 +1,9 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
export default config;
+2
View File
@@ -5,7 +5,9 @@ const config: Config = {
content: [ content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}', './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}', './src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/features/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}', './src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
], ],
theme: { theme: {
container: { container: {