File tree 10 files changed +25
-244
lines changed
10 files changed +25
-244
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
// you may not use this file except in compliance with the License.
5
5
// You may obtain a copy of the License at
6
6
//
7
- // http ://www.apache.org/licenses/LICENSE-2.0
7
+ // https ://www.apache.org/licenses/LICENSE-2.0
8
8
//
9
9
// Unless required by applicable law or agreed to in writing, software
10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- /** @type {import('next').NextConfig } */
16
- const nextConfig = {
17
- output : 'standalone' ,
18
- } ;
19
-
20
- export default nextConfig ;
15
+ export default function RootLayout ( { children } ) {
16
+ return (
17
+ < html lang = "en" >
18
+ < body > { children } </ body >
19
+ </ html >
20
+ ) ;
21
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
// you may not use this file except in compliance with the License.
5
5
// You may obtain a copy of the License at
6
6
//
7
- // http ://www.apache.org/licenses/LICENSE-2.0
7
+ // https ://www.apache.org/licenses/LICENSE-2.0
8
8
//
9
9
// Unless required by applicable law or agreed to in writing, software
10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- module . exports = {
16
- plugins : {
17
- tailwindcss : { } ,
18
- autoprefixer : { } ,
19
- } ,
20
- } ;
15
+ export default function Page ( ) {
16
+ return < h1 > Hello, Next.js!</ h1 > ;
17
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " nextjs- helloworld" ,
3
- "version " : " 0.1.0 " ,
4
- "private " : true ,
2
+ "name" : " helloworld" ,
3
+ "description " : " Simple hello world sample in Next.js " ,
4
+ "version " : " 1.0.0 " ,
5
5
"scripts" : {
6
- "dev" : " next dev" ,
6
+ "dev" : " next dev --turbo " ,
7
7
"build" : " next build" ,
8
- "start" : " next start" ,
9
- "lint" : " next lint"
8
+ "start" : " next start"
10
9
},
11
- "dependencies" : {
12
- "react" : " ^18" ,
13
- "react-dom" : " ^18" ,
14
- "next" : " 14.1.0"
10
+ "engines" : {
11
+ "node" : " >=20.0.0"
15
12
},
16
- "devDependencies" : {
17
- "typescript" : " ^5" ,
18
- "@types/node" : " ^20" ,
19
- "@types/react" : " ^18" ,
20
- "@types/react-dom" : " ^18" ,
21
- "autoprefixer" : " ^10.0.1" ,
22
- "postcss" : " ^8" ,
23
- "tailwindcss" : " ^3.3.0" ,
24
- "eslint" : " ^8" ,
25
- "eslint-config-next" : " 14.1.0"
13
+ "author" : " Google LLC" ,
14
+ "license" : " Apache-2.0" ,
15
+ "dependencies" : {
16
+ "next" : " 14.1.0" ,
17
+ "react" : " 18.2.0" ,
18
+ "react-dom" : " 18.2.0"
26
19
}
27
20
}
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments