Created
February 13, 2025 13:25
-
-
Save kevinfjbecker/ba16594a357196c4d9fdd9573662fcef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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