2023-01-22 15:39:35 -06:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-04-19 05:16:11 -05:00
|
|
|
const { version } = require("./package.json");
|
|
|
|
|
2023-01-22 15:39:35 -06:00
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
2023-03-10 23:10:10 -06:00
|
|
|
images: {
|
2023-03-28 21:45:25 -05:00
|
|
|
domains: ["t2.gstatic.com"],
|
2023-10-27 23:45:14 -05:00
|
|
|
minimumCacheTTL: 10,
|
2023-03-10 23:10:10 -06:00
|
|
|
},
|
2024-04-19 05:16:11 -05:00
|
|
|
env: {
|
|
|
|
version,
|
|
|
|
},
|
2023-02-06 11:59:23 -06:00
|
|
|
};
|
2023-01-22 15:39:35 -06:00
|
|
|
|
2023-02-06 11:59:23 -06:00
|
|
|
module.exports = nextConfig;
|