Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit df95ef1

Browse files
authoredMar 25, 2024
Added a example that includes a admin dashboard with 5 react projects over rspack (#3761)
* added example dashboard-admin-react-rspack-material-ui * added example dashboard-admin-react-rspack-material-ui
1 parent c07b515 commit df95ef1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+73221
-0
lines changed
 
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
**/node_modules
5+
**/.pnp
6+
**/.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
**/build
13+
**/dist
14+
15+
# misc
16+
**/.DS_Store
17+
**/.env.local
18+
**/.env.development.local
19+
**/.env.test.local
20+
**/.env.production.local
21+
22+
**/npm-debug.log*
23+
**/yarn-debug.log*
24+
**/yarn-error.log*
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use o IntelliSense para saber mais sobre os atributos possíveis.
3+
// Focalizar para exibir as descrições dos atributos existentes.
4+
// Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"type": "chrome",
10+
"request": "launch",
11+
"name": "Iniciar o Chrome em relação a localhost",
12+
"url": "http://localhost:3000",
13+
"webRoot": "${workspaceFolder}"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)
Please sign in to comment.