oneuptime/Accounts/Index.ts
2022-05-24 17:46:21 +01:00

28 lines
644 B
TypeScript
Executable File

import App from 'CommonServer/Utils/StartServer';
export const APP_NAME: string = 'accounts';
const app = App(APP_NAME);
import path from 'path';
import {
ExpressRequest,
ExpressResponse,
ExpressStatic,
} from 'CommonServer/Utils/Express';
app.use(ExpressStatic(path.join(__dirname, 'build')));
app.use(
`/${APP_NAME}/static/js`,
ExpressStatic(path.join(__dirname, 'build', 'static', 'js'))
);
app.use(`/${APP_NAME}`, ExpressStatic(path.join(__dirname, 'build')));
app.get('/*', (_req: ExpressRequest, res: ExpressResponse) => {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
export default app;