0👍
I’ve been fidgeting around and I’ve ended up simply grabbing the generated file and return that as a response.
public ActionResult Index()
{
try
{
var fileStream = new FileStream("/app/wwwroot/index.html", FileMode.Open);
return File(fileStream, "text/html; charset=utf-8");
}
catch (Exception ex)
{
_logger.LogError($"Kon /app/wwwroot/index.html niet openen", ex);
}
return StatusCode(500);
}
- [Vuejs]-Error: The selector did not select any valid DOM element. Please check on which element you called AutoNumeric
- [Vuejs]-Bake SCSS variables into reusable single component files Vue
Source:stackexchange.com