Westwind.Globalization
Westwind.Globalization copied to clipboard
Asp Net Core setup LocalizationAdmin/index.html getting 'resources' is undefined
After setting up all that is mentioned for asp.net core configuration (https://github.com/RickStrahl/Westwind.Globalization#installation-netcore), including the database and table settings entries in json file.
Getting like above index.html page javascript error and not getting "Create Table" button, or other strings on page.
Thanks.
Same for me on .net Core 3.0....
I found a solution, I replaced :
app.UseRouting(routes => { routes.MapRazorPages(); });
by
app.UseRouting(routes => { routes.MapDefaultControllerRoute(); routes.MapRazorPages(); });
Same for me in Asp.Net Core 3.0