hsts:false

This commit is contained in:
Alex Holliday
2025-05-22 10:53:44 -07:00
parent 47705f85ef
commit ba703ac377
2 changed files with 6 additions and 1 deletions

1
server/.gitignore vendored
View File

@@ -8,3 +8,4 @@ coverage
.clinic
node_modules
.vscode/*
public

View File

@@ -321,7 +321,11 @@ const startApp = async () => {
})
);
app.use(express.json());
app.use(helmet());
app.use(
helmet({
hsts: false,
})
);
app.use(
compression({
level: 6,