You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To future prove React Codespaces, this change abandons
react-scripts and moves everything to vite as a near seamless transition
from the create-react-app based approach when this app was created.
Reference: https://vitejs.dev/ and https://vitest.dev/
Related: reactjs/react.dev#5487
Copy file name to clipboardexpand all lines: README.md
+12-20
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ You've got a blank canvas to work on from a git perspective as well. There's a s
6
6
7
7
Everything you do here is contained within this one codespace. There is no repository on GitHub yet. If and when you’re ready you can click "Publish Branch" and we’ll create your repository and push up your project. If you were just exploring then and have no further need for this code then you can simply delete your codespace and it's gone forever.
8
8
9
-
This project was bootstrapped for you with [Create React App](https://github.com/facebook/create-react-app).
9
+
This project was bootstrapped for you with [Vite](https://vitejs.dev/).
10
10
11
11
## Available Scripts
12
12
@@ -17,7 +17,7 @@ In the project directory, you can run:
17
17
We've already run this for you in the `Codespaces: server` terminal window below. If you need to stop the server for any reason you can just run `npm start` again to bring it back online.
18
18
19
19
Runs the app in the development mode.\
20
-
Open [http://localhost:3000](http://localhost:3000) in the built-in Simple Browser (`Cmd/Ctrl + Shift + P > Simple Browser: Show`) to view your running application.
20
+
Open [http://localhost:3000/](http://localhost:3000/) in the built-in Simple Browser (`Cmd/Ctrl + Shift + P > Simple Browser: Show`) to view your running application.
21
21
22
22
The page will reload automatically when you make changes.\
23
23
You may also see any lint errors in the console.
@@ -37,42 +37,34 @@ Your app is ready to be deployed!
37
37
38
38
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
39
39
40
-
### `npm run eject`
41
-
42
-
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
43
-
44
-
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
45
-
46
-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
47
-
48
-
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
49
-
50
40
## Learn More
51
41
52
-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
42
+
You can learn more in the [Vite documentation](https://vitejs.dev/guide/).
43
+
44
+
To learn Vitest, a Vite-native testing framework, go to [Vitest documentation](https://vitest.dev/guide/)
53
45
54
46
To learn React, check out the [React documentation](https://reactjs.org/).
55
47
56
48
### Code Splitting
57
49
58
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
50
+
This section has moved here: [https://sambitsahoo.com/blog/vite-code-splitting-that-works.html](https://sambitsahoo.com/blog/vite-code-splitting-that-works.html)
59
51
60
52
### Analyzing the Bundle Size
61
53
62
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
54
+
This section has moved here: [https://github.com/btd/rollup-plugin-visualizer#rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer#rollup-plugin-visualizer)
63
55
64
56
### Making a Progressive Web App
65
57
66
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
58
+
This section has moved here: [https://dev.to/hamdankhan364/simplifying-progressive-web-app-pwa-development-with-vite-a-beginners-guide-38cf](https://dev.to/hamdankhan364/simplifying-progressive-web-app-pwa-development-with-vite-a-beginners-guide-38cf)
67
59
68
60
### Advanced Configuration
69
61
70
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
62
+
This section has moved here: [https://vitejs.dev/guide/build.html#advanced-base-options](https://vitejs.dev/guide/build.html#advanced-base-options)
71
63
72
64
### Deployment
73
65
74
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
66
+
This section has moved here: [https://vitejs.dev/guide/build.html](https://vitejs.dev/guide/build.html)
75
67
76
-
### `npm run build` fails to minify
68
+
### Troubleshooting
77
69
78
-
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
70
+
This section has moved here: [https://vitejs.dev/guide/troubleshooting.html](https://vitejs.dev/guide/troubleshooting.html)
0 commit comments