This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
website/next.config.js

24 lines
458 B
JavaScript
Raw Normal View History

2021-03-17 04:26:32 +00:00
module.exports = {
i18n: {
locales: ['pl'],
defaultLocale: 'pl',
},
images: {
domains: ['localhost', 'cdn.zdamegzaminzawodowy.pl'],
},
2021-04-15 04:16:28 +00:00
async headers() {
return [
{
source: '/:all*(gif|jpe?g|tiff|png|webp|bmp|svg|ico)',
locale: false,
headers: [
{
key: 'Cache-Control',
value: 'public, max-age=2629746, must-revalidate',
},
],
},
];
},
2021-03-17 04:26:32 +00:00
};