console icon indicating copy to clipboard operation
console copied to clipboard

Resources being repeated in the console UI

Open smith558 opened this issue 2 months ago • 2 comments

After the recent deployment, I am suddenly seeing a ton of low-level resources being repeated. These are all the same resource but just repeated. I checked the URNs. This wasn't the case as recently as this morning, when I was still running the old deployment.

Image

smith558 avatar Nov 06 '25 11:11 smith558

Image There's only one such bucket in AWS

smith558 avatar Nov 06 '25 12:11 smith558

import { service } from './service';

// instantiate your Next.js site
export const web = new sst.aws.Nextjs('Web', {
  path: 'packages/web', // wherever Next.js lives
  domain: {
    name: domainName,
    redirects: [`www.${domainName}`],
    dns: sst.cloudflare.dns({
      proxy: true
    })
  },
  dev: {
    command: 'npm run --workspace @vbdhub/web dev',
    url: 'http://localhost:3000'
  }
});

smith558 avatar Nov 06 '25 12:11 smith558