File size: 98 Bytes
1e92f2d |
1 2 3 4 5 |
export default () => ( req, res, next ) => {
res.set( 'Cache-control', 'no-store' );
next();
};
|
1e92f2d |
1 2 3 4 5 |
export default () => ( req, res, next ) => {
res.set( 'Cache-control', 'no-store' );
next();
};
|