File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+ # dependencies
4+ /node_modules
5+ /.pnp
6+ .pnp. *
7+ .yarn /*
8+ ! .yarn /patches
9+ ! .yarn /plugins
10+ ! .yarn /releases
11+ ! .yarn /versions
12+
13+ # testing
14+ /coverage
15+
16+ # next.js
17+ /.next /
18+ /out /
19+
20+ # production
21+ /build
22+
23+ # misc
24+ .DS_Store
25+ * .pem
26+
27+ # debug
28+ npm-debug.log *
29+ yarn-debug.log *
30+ yarn-error.log *
31+ .pnpm-debug.log *
32+
33+ # env files (can opt-in for committing if needed)
34+ .env *
35+
36+ # vercel
37+ .vercel
38+
39+ # typescript
40+ * .tsbuildinfo
41+ next-env.d.ts
Original file line number Diff line number Diff line change 1+ ## Nextjs App
Original file line number Diff line number Diff line change 1+ import { DevupUI } from '@devup-ui/next-plugin'
2+
3+ export default DevupUI ( { } )
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " next-vanilla-extract-devup-ui-benchmark" ,
3+ "version" : " 0.1.0" ,
4+ "type" : " module" ,
5+ "private" : true ,
6+ "scripts" : {
7+ "dev" : " next dev" ,
8+ "build" : " next build --experimental-debug-memory-usage --webpack" ,
9+ "start" : " next start" ,
10+ "lint" : " next lint"
11+ },
12+ "dependencies" : {
13+ "@vanilla-extract/css" : " ^1.18" ,
14+ "next" : " ^16.1" ,
15+ "react" : " ^19.2" ,
16+ "react-dom" : " ^19.2" ,
17+ "react-icons" : " ^5.5"
18+ },
19+ "devDependencies" : {
20+ "@types/node" : " ^25" ,
21+ "@types/react" : " ^19" ,
22+ "@types/react-dom" : " ^19" ,
23+ "typescript" : " ^5" ,
24+ "@devup-ui/next-plugin" : " workspace:^"
25+ }
26+ }
You can’t perform that action at this time.
0 commit comments