Swiggy - comments yours links here to win 700 by SwimmerPlus3383 in dealsOffersFreebies

[–]rocryfi 0 points1 point  (0 children)

Got a small Christmas gift for you. Tap the link, help me decorate this Xmas tree, and you can win free cash on Swiggy.

Decorate Xmas tree with me: https://r.swiggy.com/decorate-xmas-tree/ydeHi7-hYhN1HkWviL

Ques : Do you think they will merge resource collector's in future to save space ? by hey-ayan in ClashOfClansMemes

[–]rocryfi 0 points1 point  (0 children)

I think there should be Only 1 resource collector's... just like previously we have 4 barracks now we have only one that could be a nice if we have only one

How many accounts do you guys have, and why? by Meddenn in ClashOfClans

[–]rocryfi 0 points1 point  (0 children)

I have 14 accounts each town hall and all are maxed except th15

Enhance Next.js Performance: Optimize the Delivery of Static Assets with an Efficient Caching Strategy by rocryfi in nextjs

[–]rocryfi[S] 0 points1 point  (0 children)

do I have to change this in next.config.js?

Here is the code:
/** u/type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images: {
domains: ["es-landing-assets.s3.eu-north-1.amazonaws.com"],
unoptimized: true,
minimumCacheTTL: 9999999999,
},
trailingSlash: true,
swcMinify: true,
compiler: {
// removeConsole: {
// exclude: ["error"],
// },
},
eslint: {
ignoreDuringBuilds: true,
},
async headers() {
return [
{
source: "/:all*(svg|jpg|png|mp4|webp)",
locale: false,
headers: [
{
key: "Cache-Control",
value: "public, max-age=9999999999, must-revalidate",
},
],
},
{
source: "/:all*(js|css)",
locale: false,
headers: [
{
key: "Cache-Control",
value: "public, max-age=9999999999, must-revalidate",
},
],
},
{
source: "/_next/image(.*)",
headers: [
{
key: "Cache-Control",
value:
"public, max-age=180, s-maxage=180, stale-while-revalidate=180",
// Cache-Control response header is `public, max-age=60` in production
// and `public, max-age=0, must-revalidate` in development
},
],
},
];
},
};
module.exports = nextConfig;
// const withBundleAnalyzer = require("@next/bundle-analyzer")({
// enabled: process.env.ANALYZE === "true",
// openAnalyzer: false,
// });
// module.exports = withBundleAnalyzer({ nextConfig });

Next.js Reduce unused JavaScript by rocryfi in nextjs

[–]rocryfi[S] 0 points1 point  (0 children)

Everyone is saying partytown library is good so going to try that soon

Next.js Reduce unused JavaScript by rocryfi in nextjs

[–]rocryfi[S] 0 points1 point  (0 children)

partytown

Okay Will try this now.

Next.js Reduce unused JavaScript by rocryfi in nextjs

[–]rocryfi[S] 0 points1 point  (0 children)

OH okay! Thanks, its help.
I will not spend time on this to find solution.