diff --git a/server/src/modules/survey/controllers/surveyUI.controller.ts b/server/src/modules/survey/controllers/surveyUI.controller.ts index 17b0c863..44a148ea 100644 --- a/server/src/modules/survey/controllers/surveyUI.controller.ts +++ b/server/src/modules/survey/controllers/surveyUI.controller.ts @@ -8,11 +8,11 @@ export class SurveyUIController { @Get('/') home(@Res() res: Response) { - res.sendFile(join(__dirname, 'src/../', 'public', 'management.html')); + res.sendFile(join(process.cwd(), 'public', 'management.html')); } @Get('/management/:surveyId') management(@Param('surveyId') surveyId: string, @Res() res: Response) { - res.sendFile(join(__dirname, 'src/../', 'public', 'management.html')); + res.sendFile(join(process.cwd(), 'public', 'management.html')); } } diff --git a/server/src/modules/surveyResponse/controllers/surveyResponseUI.controller.ts b/server/src/modules/surveyResponse/controllers/surveyResponseUI.controller.ts index 8bbe6159..e0c16784 100644 --- a/server/src/modules/surveyResponse/controllers/surveyResponseUI.controller.ts +++ b/server/src/modules/surveyResponse/controllers/surveyResponseUI.controller.ts @@ -8,6 +8,6 @@ export class SurveyResponseUIController { @Get('/render/:surveyPath') render(@Param('surveyPath') surveyPath: string, @Res() res: Response) { - res.sendFile(join(__dirname, 'src/../', 'public', 'render.html')); + res.sendFile(join(process.cwd(), 'public', 'render.html')); } }