fix(prod): corriger URL API prod et bundler fonts Roboto
- apiBaseUrl: https://api.lions.dev → https://api.lions.dev/unionflow (l'ingress K8s route /unionflow/* vers le backend) - wsBaseUrl: wss://api.lions.dev → wss://api.lions.dev/unionflow - Bundler 13 fichiers TTF Roboto dans google_fonts/ (GoogleFonts.allowRuntimeFetching=false en prod crashait sans fonts locales) - Déclarer google_fonts/ dans pubspec.yaml assets
This commit is contained in:
BIN
google_fonts/Roboto-Black.ttf
Normal file
BIN
google_fonts/Roboto-Black.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-BlackItalic.ttf
Normal file
BIN
google_fonts/Roboto-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Bold.ttf
Normal file
BIN
google_fonts/Roboto-Bold.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-BoldItalic.ttf
Normal file
BIN
google_fonts/Roboto-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Italic.ttf
Normal file
BIN
google_fonts/Roboto-Italic.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Light.ttf
Normal file
BIN
google_fonts/Roboto-Light.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-LightItalic.ttf
Normal file
BIN
google_fonts/Roboto-LightItalic.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Medium.ttf
Normal file
BIN
google_fonts/Roboto-Medium.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-MediumItalic.ttf
Normal file
BIN
google_fonts/Roboto-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Regular.ttf
Normal file
BIN
google_fonts/Roboto-Regular.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-SemiBold.ttf
Normal file
BIN
google_fonts/Roboto-SemiBold.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-Thin.ttf
Normal file
BIN
google_fonts/Roboto-Thin.ttf
Normal file
Binary file not shown.
BIN
google_fonts/Roboto-ThinItalic.ttf
Normal file
BIN
google_fonts/Roboto-ThinItalic.ttf
Normal file
Binary file not shown.
@@ -66,7 +66,7 @@ class AppConfig {
|
|||||||
case Environment.prod:
|
case Environment.prod:
|
||||||
apiBaseUrl = const String.fromEnvironment(
|
apiBaseUrl = const String.fromEnvironment(
|
||||||
'API_URL',
|
'API_URL',
|
||||||
defaultValue: 'https://api.lions.dev',
|
defaultValue: 'https://api.lions.dev/unionflow',
|
||||||
);
|
);
|
||||||
keycloakBaseUrl = const String.fromEnvironment(
|
keycloakBaseUrl = const String.fromEnvironment(
|
||||||
'KEYCLOAK_URL',
|
'KEYCLOAK_URL',
|
||||||
@@ -74,7 +74,7 @@ class AppConfig {
|
|||||||
);
|
);
|
||||||
wsBaseUrl = const String.fromEnvironment(
|
wsBaseUrl = const String.fromEnvironment(
|
||||||
'WS_URL',
|
'WS_URL',
|
||||||
defaultValue: 'wss://api.lions.dev',
|
defaultValue: 'wss://api.lions.dev/unionflow',
|
||||||
);
|
);
|
||||||
enableDebugMode = false;
|
enableDebugMode = false;
|
||||||
enableLogging = false;
|
enableLogging = false;
|
||||||
|
|||||||
@@ -124,6 +124,7 @@ flutter:
|
|||||||
uses-material-design: true
|
uses-material-design: true
|
||||||
generate: true
|
generate: true
|
||||||
assets:
|
assets:
|
||||||
|
- google_fonts/
|
||||||
- assets/images/
|
- assets/images/
|
||||||
- assets/images/branding/
|
- assets/images/branding/
|
||||||
- assets/images/payment_methods/wave/
|
- assets/images/payment_methods/wave/
|
||||||
|
|||||||
Reference in New Issue
Block a user