jueves, 21 de marzo de 2024

Instalar Powershell 7

Instalar Powershell Version 7
--------------------------------------
$> winget search powershell
$> winget install Microsoft.Powershell

Actualizar Powershell 7
$> iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"

Desactivar texto de inicio PowerShell
Ir Configuracion -> Setting.json
"commandline": "pwsh.exe -nologo",
"opacity": 97,
"intenseTextStyle": "all",
"centerOnLaunch":true,

Tamaño de Terminal: colum 104   Filas:25
Font: CaskaydiaCove Nerd Font
FontSize:13

Instalar iconos en PowerShell
$> Install-Module -Name Terminal-Icons -Repository PSGallery      //Y
$> notepad $PROFILE
Al final de la línea agregar:
Import-Module -Name Terminal-Icons

➜➔


Actualizar TailwindCSS a la version 4 en Laravel

Actualizar TailwindCSS a la version 4 en Laravel npx @tailwindcss/upgrade En el archivo vite.config.ts Agregar el plugin de tailwindcss impo...