mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 08:20:13 +01:00
6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
app.use(express.static('./dist/ngx-admin'));
|
|
app.get('/*', function (req, res) {
|
|
res.sendFile('index.html', { root: 'dist/ngx-admin/' }
|
|
);
|
|
});
|
|
app.listen(process.env.PORT || 8080);
|