diff --git a/.env.development b/.env.development index f4793c4..3cb7a18 100644 --- a/.env.development +++ b/.env.development @@ -4,10 +4,10 @@ NEXT_PUBLIC_APP_NAME="SupportHub Web (Dev)" 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_WS_URL="wss://supportdev-api.maskantech.in/ws" +NEXT_PUBLIC_API_URL="http://localhost:4501" +NEXT_PUBLIC_WS_URL="ws://localhost:4501/ws" NEXT_PUBLIC_SAAS_PLATFORM_NAME="SaaS Parent Platform (Dev)" NEXT_PUBLIC_SAAS_AUTH_HEADER="X-SaaS-User-Token" diff --git a/.env.example b/.env.example index 44d2307..d4ac5f6 100644 --- a/.env.example +++ b/.env.example @@ -8,7 +8,7 @@ NEXT_PUBLIC_APP_ENV="development" NEXT_PUBLIC_APP_URL="http://localhost:3000" # 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" # SaaS Parent Platform Integration diff --git a/.env.template b/.env.template index acaeb1c..0b458d5 100644 --- a/.env.template +++ b/.env.template @@ -8,7 +8,7 @@ NEXT_PUBLIC_APP_ENV="development" NEXT_PUBLIC_APP_URL="http://localhost:3000" # 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" # SaaS Parent Platform Integration diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/postcss.config.mjs b/postcss.config.mjs new file mode 100644 index 0000000..2ef30fc --- /dev/null +++ b/postcss.config.mjs @@ -0,0 +1,9 @@ +/** @type {import('postcss-load-config').Config} */ +const config = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; + +export default config; diff --git a/tailwind.config.ts b/tailwind.config.ts index 88a30a3..a874310 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -5,7 +5,9 @@ const config: Config = { content: [ './src/pages/**/*.{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/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { container: {