diff options
Diffstat (limited to 'packages/create-astro/src')
-rw-r--r-- | packages/create-astro/src/actions/template.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/src/actions/template.ts b/packages/create-astro/src/actions/template.ts index 887ba69f5..3d3d1075d 100644 --- a/packages/create-astro/src/actions/template.ts +++ b/packages/create-astro/src/actions/template.ts @@ -48,7 +48,7 @@ export async function template(ctx: Pick<Context, 'template' | 'prompt' | 'dryRu } // some files are only needed for online editors when using astro.new. Remove for create-astro installs. -const FILES_TO_REMOVE = ['sandbox.config.json', 'CHANGELOG.md']; +const FILES_TO_REMOVE = ['CHANGELOG.md', '.codesandbox']; const FILES_TO_UPDATE = { 'package.json': (file: string, overrides: { name: string }) => fs.promises.readFile(file, 'utf-8').then((value) => { |