ใน Power Shell รันคำสั่ง vue create ahoy-app เพื่อสร้าง Project Vue แล้วขึ้น Error
1 2 3 4 5 6 |
File C:\Users\...\AppData\Roaming\npm\vue.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170. At line:1 char:1 + vue create ahoy-app + ~~~ + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess |
This is a powershell security policy, to fix it run the following (แต่ต้องเป็นสิทธิ์ Administartor)
1 |
PS C:\> Set-ExecutionPolicy RemoteSigned |