We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efce7ca commit 4df244fCopy full SHA for 4df244f
3 files changed
Makefile
@@ -0,0 +1,5 @@
1
+.PHONY: start
2
+
3
+start:
4
+ npm install
5
+ npm start
README.md
@@ -99,7 +99,9 @@ cd example-auth-solidstart
99
npm install
100
101
# 3. Start the development server
102
-npm run dev
+npm start
103
+# or
104
+make start
105
```
106
107
The application will now be running at `http://localhost:3000`.
package.json
@@ -13,9 +13,9 @@
13
"seroval": "1.4.2"
14
},
15
"scripts": {
16
+ "start": "vinxi dev",
17
"dev": "vinxi dev",
18
"build": "vinxi build",
- "start": "vinxi start",
19
"preview": "vite preview",
20
"format": "prettier --write .",
21
"lint": "prettier --check . && eslint .",
0 commit comments