Skip to content

Commit 5fe6955

Browse files
committed
Revert "WIP"
This reverts commit bbed7d9.
1 parent 1dc0c6e commit 5fe6955

File tree

6 files changed

+35
-18
lines changed

6 files changed

+35
-18
lines changed

bench/app-router-server/app/layout.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import * as React from 'react'
2+
13
export default function Root({ children }) {
24
return (
35
<html>

bench/app-router-server/app/route.js

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as React from 'react'
2+
3+
export default function page() {
4+
return <div>hello</div>
5+
}

bench/app-router-server/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
"private": true,
44
"license": "MIT",
55
"dependencies": {
6-
"next": "workspace:*",
7-
"next-minimal-server": "workspace:*",
8-
"sharp": "^0.34.3",
96
"webpack-bundle-analyzer": "^4.6.1",
10-
"webpack-stats-plugin": "^1.1.0"
7+
"webpack-stats-plugin": "^1.1.0",
8+
"next": "workspace:*",
9+
"next-minimal-server": "workspace:*"
1110
},
1211
"scripts": {
1312
"build-application": "next build",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import * as React from 'react'
2+
3+
export default function page() {
4+
return <div> hello world </div>
5+
}
6+
7+
export async function getServerSideProps() {
8+
return {}
9+
}

pnpm-lock.yaml

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)