Skip to content

Commit

Permalink
fix(qwik template): change preview script (#15975)
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Feb 20, 2024
1 parent 257f5ec commit 725589a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/create-vite/template-qwik-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "serve dist"
},
"devDependencies": {
"serve": "^14.2.1",
"typescript": "^5.2.2",
"vite": "^5.1.3"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/create-vite/template-qwik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "serve dist"
},
"devDependencies": {
"serve": "^14.2.1",
"typescript": "^5.2.2",
"vite": "^5.1.3"
},
Expand Down

0 comments on commit 725589a

Please sign in to comment.