mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
26 lines
918 B
C#
26 lines
918 B
C#
using System;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.SpaServices.Prerendering;
|
|
using Webpack.ActionResults;
|
|
|
|
namespace Webpack.Controllers
|
|
{
|
|
// This sample shows how you could invoke the prerendering APIs directly from an MVC
|
|
// action result.
|
|
public class FullPagePrerenderingController : Controller
|
|
{
|
|
private static JavaScriptModuleExport BootModule = new JavaScriptModuleExport("Clientside/PrerenderingSample")
|
|
{
|
|
// Because the boot module is written in TypeScript, we need to specify a webpack
|
|
// config so it can be built. If it was written in JavaScript, this would not be needed.
|
|
WebpackConfig = "webpack.config.js"
|
|
};
|
|
|
|
public IActionResult Index()
|
|
{
|
|
var dataToSupply = new { nowTime = DateTime.Now.Ticks };
|
|
return this.Prerender(BootModule, dataToSupply);
|
|
}
|
|
}
|
|
}
|