9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
module.exports = {
|
||
|
|
experimental: {
|
||
|
|
serverActions: {
|
||
|
|
allowedOrigins: ["*"], // we need to support POSTs from arbitrary SAML SPs
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|