Files
next-gdrive-index/next.config.js
T
2024-04-06 22:09:03 +07:00

24 lines
467 B
JavaScript

const nextConfig = {
reactStrictMode: true,
webpack: (config) => {
config.resolve.alias.canvas = false;
return config;
},
// async headers() {
// return [
// {
// source: "/:path*",
// headers: [
// {
// key: "Cache-Control",
// value: "max-age=300, s-maxage=300, stale-while-revalidate, public",
// },
// ],
// },
// ];
// },
};
module.exports = nextConfig;