Can you let me know if setting the SERVICESTACK_LICENSE
Environment variable with your License Key is able to resolve the issue?
In the meantime you can generate curl commands to download the files by pasting in this snippet to #Script Code
on sharpscript.net
var theme = 'Tailwind'
#each name in 'AlertSuccess,CheckboxInput,DateTimeInput,DynamicInput,ErrorSummary,SelectInput,TextAreaInput,TextInput'.split(',')
`curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/${theme}/${name}.razor -O ${name}.razor`
/each
To generate these curl commands:
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/AlertSuccess.razor -O AlertSuccess.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/CheckboxInput.razor -O CheckboxInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/DateTimeInput.razor -O DateTimeInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/DynamicInput.razor -O DynamicInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/ErrorSummary.razor -O ErrorSummary.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/SelectInput.razor -O SelectInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/TextAreaInput.razor -O TextAreaInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/TextInput.razor -O TextInput.razor
Which you can run in the folder to override the local *.razor
components.