aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/static.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/static.ts')
-rw-r--r--server/controllers/static.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/static.ts b/server/controllers/static.ts
index baafe1ac4..75e30353c 100644
--- a/server/controllers/static.ts
+++ b/server/controllers/static.ts
@@ -120,7 +120,7 @@ staticRouter.use('/.well-known/dnt-policy.txt',
120 (_, res: express.Response) => { 120 (_, res: express.Response) => {
121 res.type('text/plain') 121 res.type('text/plain')
122 122
123 return res.sendFile(join(root(), 'server/static/dnt-policy/dnt-policy-1.0.txt')) 123 return res.sendFile(join(root(), 'dist/server/static/dnt-policy/dnt-policy-1.0.txt'))
124 } 124 }
125) 125)
126 126