Skip to content

Commit

Permalink
chore: make nextjs the default create fuels template (#3005)
Browse files Browse the repository at this point in the history
* chore: changeset

* chore: update changeset
  • Loading branch information
danielbate authored Aug 22, 2024
1 parent 9bba305 commit c57f30a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/great-boxes-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

chore: make `nextjs` the default `create fuels` template
2 changes: 1 addition & 1 deletion packages/create-fuels/src/lib/setupProgram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import packageJson from '../../package.json';

export type Template = 'nextjs' | 'vite';
export const templates: Set<Template> = new Set(['nextjs', 'vite']);
export const defaultTemplate: Template = 'vite';
export const defaultTemplate: Template = 'nextjs';

export interface ProgramOptions {
contract?: boolean;
Expand Down

0 comments on commit c57f30a

Please sign in to comment.