-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNotes.txt
More file actions
16 lines (14 loc) · 633 Bytes
/
Notes.txt
File metadata and controls
16 lines (14 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
* 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