Also, add hashes to asset file names and use the "entry manifest" plugin in dev to get auto-reloading.
11 lines
185 B
JavaScript
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;
|