kc params from env
This commit is contained in:
parent
cc7f3d3371
commit
a7168231a1
@ -1,3 +1,5 @@
|
|||||||
|
const webpack = require('webpack');
|
||||||
|
|
||||||
const pkg = require('./package')
|
const pkg = require('./package')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
@ -6,6 +8,13 @@ module.exports = {
|
|||||||
output: {
|
output: {
|
||||||
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`,
|
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`,
|
||||||
},
|
},
|
||||||
|
plugins: [
|
||||||
|
new webpack.DefinePlugin({
|
||||||
|
KC_URL: process.env.KC_URL || '"https://kc.bro-js.ru"',
|
||||||
|
KC_REALM: process.env.KC_REALM || '"bro-js"',
|
||||||
|
KC_CLIENT_ID: process.env.KC_CLIENT_ID || '"microfrontend-admin"',
|
||||||
|
}),
|
||||||
|
],
|
||||||
},
|
},
|
||||||
navigations: {
|
navigations: {
|
||||||
'journal.main': '/journal.pl',
|
'journal.main': '/journal.pl',
|
24
index.d.ts
vendored
24
index.d.ts
vendored
@ -1,6 +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' {
|
declare module '*.svg' {
|
||||||
const src: string;
|
const value: string
|
||||||
export default src;
|
|
||||||
|
export default value
|
||||||
}
|
}
|
||||||
|
|
||||||
declare const __webpack_public_path__: string;
|
declare module '*.jpg' {
|
||||||
|
const value: string
|
||||||
|
|
||||||
|
export default value
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '*.png' {
|
||||||
|
const value: string
|
||||||
|
|
||||||
|
export default value
|
||||||
|
}
|
||||||
|
|
||||||
|
declare const __webpack_public_path__: string
|
||||||
|
2643
package-lock.json
generated
2643
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -25,7 +25,7 @@
|
|||||||
"eslint-plugin-react": "^7.34.1"
|
"eslint-plugin-react": "^7.34.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brojs/cli": "^0.0.4-beta.0",
|
"@brojs/cli": "^1.8.4",
|
||||||
"@chakra-ui/icons": "^2.1.1",
|
"@chakra-ui/icons": "^2.1.1",
|
||||||
"@chakra-ui/react": "^2.8.2",
|
"@chakra-ui/react": "^2.8.2",
|
||||||
"@emotion/react": "^11.11.4",
|
"@emotion/react": "^11.11.4",
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
import Keycloak from 'keycloak-js';
|
import Keycloak from 'keycloak-js';
|
||||||
|
|
||||||
export const keycloak = new Keycloak({
|
export const keycloak = new Keycloak({
|
||||||
url: 'https://kc.bro-js.ru',
|
url: KC_URL,
|
||||||
realm: 'bro-js',
|
realm: KC_REALM,
|
||||||
clientId: 'journal'
|
clientId: KC_CLIENT_ID,
|
||||||
});
|
});
|
||||||
|
|
||||||
window.keycloak = keycloak;
|
|
Loading…
Reference in New Issue
Block a user