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

fix(vue instantsearch with vue 3): use "yarn start" to run template #571

Merged
merged 2 commits into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions e2e/__snapshots__/templates.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8418,14 +8418,14 @@ To run this project locally, install the dependencies and run the local server:

\`\`\`sh
npm install
npm run dev
npm start
\`\`\`

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

\`\`\`sh
yarn
yarn dev
yarn start
\`\`\`

Open http://localhost:3000 to see your app."
Expand Down Expand Up @@ -8460,6 +8460,7 @@ exports[`Templates Vue InstantSearch with Vue 3 File content: package.json 1`] =
\\"private\\": true,
\\"scripts\\": {
\\"dev\\": \\"vite\\",
\\"start\\": \\"vite\\",
\\"build\\": \\"vite build\\",
\\"preview\\": \\"vite preview\\"
},
Expand Down
4 changes: 2 additions & 2 deletions src/templates/Vue InstantSearch with Vue 3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ To run this project locally, install the dependencies and run the local server:

```sh
npm install
npm run dev
npm start
```

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

```sh
yarn
yarn dev
yarn start
```

Open http://localhost:3000 to see your app.
1 change: 1 addition & 0 deletions src/templates/Vue InstantSearch with Vue 3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
Expand Down