Skip to content

Commit

Permalink
fix response save
Browse files Browse the repository at this point in the history
  • Loading branch information
damikael committed May 13, 2020
1 parent 5503f9a commit ac9fe94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spid-validator/server/spid-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const Authenticator = require("./lib/authenticator");
var app = express();
app.use(helmet());

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json({limit: '3mb', extended: true}));
app.use(bodyParser.urlencoded({limit: '3mb', extended: true}));
app.use(express.static(path.resolve(__dirname, "..", "client/build/assets")));
app.use("/assets", express.static(path.resolve(__dirname, "..", "client/build/assets")));

Expand Down

0 comments on commit ac9fe94

Please sign in to comment.