feat: add logo image and RTL support styles
- Added logo image to assets. - Implemented RTL support styles in rtlSupport.scss for various components including breadcrumb, datatable, and tree node toggle button. chore: configure environment files for production, staging, and development - Created environment.prod.ts for production settings. - Created environment.staging.ts for staging settings. - Created environment.ts for local development settings. feat: define custom theme preset - Added presets.ts to define a custom theme preset using PrimeUIX with specific component styles and semantic colors. chore: set up proxy configuration for local development
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// Production environment configuration
|
||||
export const environment = {
|
||||
production: true,
|
||||
apiBaseUrl: 'https://api.yourdomain.com',
|
||||
host: 'yourdomain.com',
|
||||
port: 443,
|
||||
apiEndpoints: {
|
||||
auth: '/api/auth',
|
||||
users: '/api/users',
|
||||
// Add more endpoints as needed
|
||||
},
|
||||
enableLogging: false,
|
||||
enableDebug: false,
|
||||
};
|
||||
@@ -0,0 +1,14 @@
|
||||
// Staging environment configuration
|
||||
export const environment = {
|
||||
production: false,
|
||||
apiBaseUrl: 'https://staging-api.yourdomain.com',
|
||||
host: 'staging.yourdomain.com',
|
||||
port: 443,
|
||||
apiEndpoints: {
|
||||
auth: '/api/auth',
|
||||
users: '/api/users',
|
||||
// Add more endpoints as needed
|
||||
},
|
||||
enableLogging: true,
|
||||
enableDebug: true,
|
||||
};
|
||||
@@ -0,0 +1,9 @@
|
||||
// Development environment configuration
|
||||
export const environment = {
|
||||
production: false,
|
||||
apiBaseUrl: 'https://localhost',
|
||||
host: 'localhost',
|
||||
port: 60749,
|
||||
enableLogging: true,
|
||||
enableDebug: true,
|
||||
};
|
||||
Reference in New Issue
Block a user