We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdaa09c commit 92c8236Copy full SHA for 92c8236
sample/server.js
@@ -11,6 +11,10 @@ var express = require('express');
11
var app = express();
12
13
var static = express.static(path.join(__dirname, 'public'));
14
+app.use(function (req, res, next) {
15
+ res.set('Content-Security-Policy', "default-src 'self'");
16
+ next();
17
+ });
18
app.use(static);
19
20
app.get("/oidc-client.js", function(req, res){
0 commit comments