Posts by Bruno Kocziceski • 33 points
4 posts
-
-4
votes3
answers537
viewsA: What is Hermes for?
Basically Hermes was developed to accelerate application startup using static optimization and Compact bytecode with this it is able to significantly improve boot time, the size of APK generated in…
-
1
votes1
answer35
viewsA: jQuery menu for Avascript
Converting your code to pure JS would look something like this: (function() { const menu = document.querySelector('.menu'); const nav = document.querySelector('.nav'); menu.addEventListener('click',…
javascriptanswered Bruno Kocziceski 33 -
1
votes1
answer86
viewsA: Apache does not find URL
As an alternative to HashLocationStrategy you can implement this rewrite rule in your .htaccess <IfModule mod_rewrite.c> RewriteEngine on # Don't rewrite files or directories RewriteCond…
-
2
votes2
answers294
viewsA: Httpinterceptor null token (Angular 7)
You need to change the content-type of the Interceptor as follows: 'Content-Type': 'application/json'