Out folder of next js is not getting updated
Unanswered
Barbary Lion posted this in #help-forum
Barbary LionOP
when running command next build && firebase deploy --> out folder is not getting updated
and here is my next.confg
/ @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { isServer }) => {
config.cache = false;
return config;
},
reactStrictMode: true,
// swcMinify: true,
// output: "export",
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'storage.googleapis.com',
pathname: '',
},
],
},
};
export default nextConfig;
and here is my next.confg
/ @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { isServer }) => {
config.cache = false;
return config;
},
reactStrictMode: true,
// swcMinify: true,
// output: "export",
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'storage.googleapis.com',
pathname: '',
},
],
},
};
export default nextConfig;