Skip to content

Instantly share code, notes, and snippets.

@kevinfjbecker
Created February 13, 2025 13:25
Show Gist options
  • Save kevinfjbecker/ba16594a357196c4d9fdd9573662fcef to your computer and use it in GitHub Desktop.
Save kevinfjbecker/ba16594a357196c4d9fdd9573662fcef to your computer and use it in GitHub Desktop.
# Define the raw GitHub Gist URL
$gistUrl = "https://gist.githubusercontent.com/kevinfjbecker/8f5c89a1a94d5e298b924c8b180e72d3/raw/fcb245c6b22b48fa8186828f434ab71137d15aac/vite.config.js"
# Define the local file path where the content will be saved
$outputFile = ".\vite.config.js"
# Use Invoke-WebRequest to download the Gist content
try {
Invoke-WebRequest -Uri $gistUrl -OutFile $outputFile
Write-Host "File downloaded successfully: $outputFile"
} catch {
Write-Host "Error downloading file: $_"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment