mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
14 lines
427 B
C#
14 lines
427 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.SpaServices.Prerendering;
|
|
|
|
namespace Webpack.ActionResults
|
|
{
|
|
public static class PrerenderResultExtensions
|
|
{
|
|
public static PrerenderResult Prerender(this ControllerBase controller, JavaScriptModuleExport exportToPrerender, object dataToSupply = null)
|
|
{
|
|
return new PrerenderResult(exportToPrerender, dataToSupply);
|
|
}
|
|
}
|
|
}
|