8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
import express from 'express';
|
|
import { handler as ssrHandler } from './dist/server/entry.mjs';
|
|
|
|
const app = express();
|
|
app.use(express.static('dist/client/'))
|
|
app.use(ssrHandler);
|
|
|
|
app.listen(80); |