24 lines
601 B
JavaScript
24 lines
601 B
JavaScript
const fs = require('fs');
|
|
const app = require('express')();
|
|
const compression = require('compression');
|
|
const sapper = require('sapper');
|
|
const static = require('serve-static');
|
|
|
|
const { PORT = 4002 } = process.env;
|
|
|
|
// this allows us to do e.g. `fetch('/api/blog')` on the server
|
|
const fetch = require('node-fetch');
|
|
global.fetch = (url, opts) => {
|
|
if (url[0] === '/') url = `http://localhost:${PORT}${url}`;
|
|
return fetch(url, opts);
|
|
};
|
|
|
|
app.use(compression({ threshold: 0 }));
|
|
|
|
app.use(static('assets'));
|
|
|
|
app.use(sapper());
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`listening on port ${PORT}`);
|
|
}); |