File tree 4 files changed +42
-3
lines changed
4 files changed +42
-3
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import type { MetaFunction } from "@remix-run/deno " ;
1
+ import type { MetaFunction } from "@remix-run/node " ;
2
2
3
3
export const meta : MetaFunction = ( ) => {
4
4
return [
Original file line number Diff line number Diff line change
1
+ import type { MetaFunction } from "@netlify/remix-runtime" ;
2
+
3
+ export const meta : MetaFunction = ( ) => {
4
+ return [
5
+ { title : "New Remix App" } ,
6
+ { name : "description" , content : "Welcome to Remix!" } ,
7
+ ] ;
8
+ } ;
9
+
10
+ export default function Index ( ) {
11
+ return (
12
+ < div style = { { fontFamily : "system-ui, sans-serif" , lineHeight : "1.8" } } >
13
+ < h1 > Welcome to Remix</ h1 >
14
+ < ul >
15
+ < li >
16
+ < a
17
+ target = "_blank"
18
+ href = "https://remix.run/tutorials/blog"
19
+ rel = "noreferrer"
20
+ >
21
+ 15m Quickstart Blog Tutorial
22
+ </ a >
23
+ </ li >
24
+ < li >
25
+ < a
26
+ target = "_blank"
27
+ href = "https://remix.run/tutorials/jokes"
28
+ rel = "noreferrer"
29
+ >
30
+ Deep Dive Jokes App Tutorial
31
+ </ a >
32
+ </ li >
33
+ < li >
34
+ < a target = "_blank" href = "https://remix.run/docs" rel = "noreferrer" >
35
+ Remix Docs
36
+ </ a >
37
+ </ li >
38
+ </ ul >
39
+ </ div >
40
+ ) ;
41
+ }
Original file line number Diff line number Diff line change @@ -143,7 +143,6 @@ async function shouldUseEdge(rootDirectory) {
143
143
144
144
async function main ( { rootDirectory, packageManager } ) {
145
145
intro ( `Welcome to Remix on Netlify` ) ;
146
- console . log ( "rootDirectory" , rootDirectory ) ;
147
146
const useEdge = await shouldUseEdge ( rootDirectory ) ;
148
147
const spin = spinner ( ) ;
149
148
spin . start ( "Setting up your project" ) ;
You can’t perform that action at this time.
0 commit comments