Skip to content

Commit

Permalink
Include a vite static framework for bls sites init (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
uditdc authored Jun 29, 2023
1 parent 1582266 commit a4b930b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/commands/sites/fameworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ interface IFramework {
}

const frameworks: IFramework[] = [
{
id: 'vite',
name: 'Blank (Vite)',
command: (pm, name) => `${pm} create-vite ${name} --template vanilla`,
postCommand: null,
config: {
build: 'npm run build',
publicDir: 'dist'
}
},
{
id: 'react',
name: 'React',
Expand Down

0 comments on commit a4b930b

Please sign in to comment.