we are at "@fortawesome/fontawesome-free": "^6.2.1"
Read the statement by Michael Teeuw here.
Posts
-
RE: Calendar Symbol & SymbolClassname
-
RE: MMM-Hue CORS Policy Issue
@fozi thanks but … no
would be better to have a solution without
https
, may someone else gets this figured out.As an improvement for the above solution with
https
:Holding the certs in the
config
directory makes them accessible from outside so better move them into a new directory besideconfig
, e.g.certs
which is not exposed. Don’t forget to updateconfig.js
afterwards. -
RE: MMM-Flights no map ist shown
can reproduce it if I use a nonexisting mapUrl, so I think you have a typo in your mapUrl …
-
RE: MMM-Remote-Control API and remote fails after V2.25.0 update
the missing
node-fetch
inpackage.json
of MMM-RemoteControl was fixed 19h before so I think you installed the fixed version and rhbauman not … -
RE: MMM 2.18 - NPM? Electron? Silly lifecycle? no MMM
@oberfragger yes, in the mm folder
-
RE: Cannot find module 'node-fetch' error with MMM-SoccerLiveScore
well, npm install would have installed the devDependencies too…
This sentence clicked in my brain.
I have
NODE_ENV=production
as default in my images (expect images I use for testing) and with thisnpm install
will install nothingnpm install node-fetch@2
will install nothing
so @codac please go again in the folder of the module and run
NODE_ENV=test npm install node-fetch@2
this should hopefully solve the issue
-
RE: MMM-PIR -Sensor doesn't work after update
The sandbox error is mentioned in this github electron issue. It’s a chromium bug and everything should still work normally.
-
RE: Permanent size for newsfeed box?
you can add the following in
css/custom.css
:.module.newsfeed { height: 200px; }
you can play with the height value.
-
RE: CORS Policy Issue - different at electron and remote Chrome Browser
you can try the ip-address of the pi in
config.js
asaddress:
instead of"0.0.0.0"
.