浏览代码

Fixes formatting

Julian Reinhardt 4 年之前
父节点
当前提交
f75b5b867b
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      backend/app.js

+ 6 - 6
backend/app.js

@@ -40,12 +40,12 @@ app.use(function (req, res, next) {
 	}
 
 	res.set({
-		'X-XSS-Protection':          '1; mode=block',
-		'X-Content-Type-Options':    'nosniff',
-		'X-Frame-Options':           x_frame_options,
-		'Cache-Control':             'no-cache, no-store, max-age=0, must-revalidate',
-		Pragma:                      'no-cache',
-		Expires:                     0
+		'X-XSS-Protection':       '1; mode=block',
+		'X-Content-Type-Options': 'nosniff',
+		'X-Frame-Options':        x_frame_options,
+		'Cache-Control':          'no-cache, no-store, max-age=0, must-revalidate',
+		Pragma:                   'no-cache',
+		Expires:                  0
 	});
 	next();
 });