- Jul 10, 2022
- 184
- 63
Hi guys,
I’m currently running paid traffic with Google Ads and I’m looking for a way to deploy multiple variations of the same site without footprints between accounts.
My site is built with Next.js, and I would like to automate the creation of slightly different versions of the same project.
Ideally, I’m looking for a script or workflow that can handle:
Basically the goal is to generate multiple builds of the same site that are technically different but functionally identical.
Does anyone know:
Thanks in advance.
I’m currently running paid traffic with Google Ads and I’m looking for a way to deploy multiple variations of the same site without footprints between accounts.
My site is built with Next.js, and I would like to automate the creation of slightly different versions of the same project.
Ideally, I’m looking for a script or workflow that can handle:
- Domain management / masking
Using APIs like Vercel or Cloudflare to quickly attach new domains. - Source code obfuscation
Randomizing or obfuscating HTML / CSS / JS during the build process to avoid identical fingerprints. - Image processing
- Remove EXIF metadata
- Modify image hash slightly (to avoid duplicate detection)
- Content spinning during SSG
When generating pages with Next.js static generation, automatically produce slightly different text versions.
Basically the goal is to generate multiple builds of the same site that are technically different but functionally identical.
Does anyone know:
- Existing scripts / GitHub repos for this
- A good automation stack for it
- Or how people usually handle this with Next.js?
Thanks in advance.