diff --git a/e2e/__snapshots__/templates.test.js.snap b/e2e/__snapshots__/templates.test.js.snap index 854b51880..1b2ec9e8f 100644 --- a/e2e/__snapshots__/templates.test.js.snap +++ b/e2e/__snapshots__/templates.test.js.snap @@ -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." @@ -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\\" }, diff --git a/src/templates/Vue InstantSearch with Vue 3/README.md b/src/templates/Vue InstantSearch with Vue 3/README.md index 464b4027e..f330c8c3e 100644 --- a/src/templates/Vue InstantSearch with Vue 3/README.md +++ b/src/templates/Vue InstantSearch with Vue 3/README.md @@ -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. diff --git a/src/templates/Vue InstantSearch with Vue 3/package.json b/src/templates/Vue InstantSearch with Vue 3/package.json index e7b68a68b..31110692a 100644 --- a/src/templates/Vue InstantSearch with Vue 3/package.json +++ b/src/templates/Vue InstantSearch with Vue 3/package.json @@ -4,6 +4,7 @@ "private": true, "scripts": { "dev": "vite", + "start": "vite", "build": "vite build", "preview": "vite preview" },