Files
ESP3D-Configurator/Notes.txt
Luc d3b7e74692 Early code base
Note: preact/spectre are not yet defined
2022-06-07 17:43:12 +08:00

17 lines
633 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
* Fix dev websocket server cannot work under Linux
> sudo apt-get install libcap2-bin
> sudo setcap cap_net_bind_service=+ep `readlink -f \`which node\``
* Fix and “ need space to be displayed under Linux
> setxkbmap -layout us
* Fix for sass div warning
>npm install -g sass-migrator
>sass-migrator division **/*.scss
Note:
on windows need change script policy first:
> Get-ExecutionPolicy -List
>Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
then when done, put back default (the one got by initial Get-ExecutionPolicy -List)
>Set-ExecutionPolicy -ExecutionPolicy Restricted -Scope CurrentUser