console
console copied to clipboard
Resources being repeated in the console UI
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.
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'
}
});