Refactor project structure and integrate Redux for state management. Update configuration files for new project name and add Webpack plugins for environment variables. Implement user authentication with Keycloak and create a context for challenge management. Add various components for user interaction, including dashboards and task workspaces. Enhance API integration and add error handling utilities. Introduce analytics and polling mechanisms for improved user experience.
Some checks failed
platform/bro-js/challenge-pl/pipeline/head There was a failure building this commit
Some checks failed
platform/bro-js/challenge-pl/pipeline/head There was a failure building this commit
This commit is contained in:
24
@types/index.d.ts
vendored
Normal file
24
@types/index.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
declare const IS_PROD: string
|
||||
declare const KC_URL: string
|
||||
declare const KC_REALM: string
|
||||
declare const KC_CLIENT_ID: string
|
||||
|
||||
declare module '*.svg' {
|
||||
const svg_path: string
|
||||
|
||||
export default svg_path
|
||||
}
|
||||
|
||||
declare module '*.jpg' {
|
||||
const jpg_path: string
|
||||
|
||||
export default value
|
||||
}
|
||||
|
||||
declare module '*.png' {
|
||||
const png_path: string
|
||||
|
||||
export default value
|
||||
}
|
||||
|
||||
declare const __webpack_public_path__: string
|
||||
Reference in New Issue
Block a user