unpkg/modules/functions/serveMainPage.js
Michael Jackson 09914c1db4 Server render the main page
Also, add hashes to asset file names and use the "entry manifest" plugin
in dev to get auto-reloading.
2019-01-12 19:27:28 -08:00

11 lines
185 B
JavaScript

import express from 'express';
import serveMainPage from '../actions/serveMainPage';
const app = express();
app.disable('x-powered-by');
app.use(serveMainPage);
export default app;