Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit c17089f

Browse files
authored
fix(vue instantsearch with vue 3): use "yarn start" to run template (#571)
1 parent b22a9e6 commit c17089f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

e2e/__snapshots__/templates.test.js.snap

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8418,14 +8418,14 @@ To run this project locally, install the dependencies and run the local server:
84188418
84198419
\`\`\`sh
84208420
npm install
8421-
npm run dev
8421+
npm start
84228422
\`\`\`
84238423
84248424
Alternatively, you may use [Yarn](https://http://yarnpkg.com/):
84258425
84268426
\`\`\`sh
84278427
yarn
8428-
yarn dev
8428+
yarn start
84298429
\`\`\`
84308430
84318431
Open http://localhost:3000 to see your app."
@@ -8460,6 +8460,7 @@ exports[`Templates Vue InstantSearch with Vue 3 File content: package.json 1`] =
84608460
\\"private\\": true,
84618461
\\"scripts\\": {
84628462
\\"dev\\": \\"vite\\",
8463+
\\"start\\": \\"vite\\",
84638464
\\"build\\": \\"vite build\\",
84648465
\\"preview\\": \\"vite preview\\"
84658466
},

src/templates/Vue InstantSearch with Vue 3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ To run this project locally, install the dependencies and run the local server:
88

99
```sh
1010
npm install
11-
npm run dev
11+
npm start
1212
```
1313

1414
Alternatively, you may use [Yarn](https://http://yarnpkg.com/):
1515

1616
```sh
1717
yarn
18-
yarn dev
18+
yarn start
1919
```
2020

2121
Open http://localhost:3000 to see your app.

src/templates/Vue InstantSearch with Vue 3/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"scripts": {
66
"dev": "vite",
7+
"start": "vite",
78
"build": "vite build",
89
"preview": "vite preview"
910
},

0 commit comments

Comments
 (0)