update the dashbaord
This commit is contained in:
+3
-3
@@ -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
@@ -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
@@ -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
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
autoprefixer: {},
|
||||||
|
},
|
||||||
|
};
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
/** @type {import('postcss-load-config').Config} */
|
||||||
|
const config = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
autoprefixer: {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
@@ -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: {
|
||||||
|
|||||||
Reference in New Issue
Block a user