Skip to content

Commit 4a571d2

Browse files
committed
fix: correct imports and entrypoint
1 parent 3fbf4c2 commit 4a571d2

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

app/entry.server.tsx

-1
This file was deleted.

app/routes/_index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { MetaFunction } from "@remix-run/deno";
1+
import type { MetaFunction } from "@remix-run/node";
22

33
export const meta: MetaFunction = () => {
44
return [

remix.init/edge/app/routes/_index.tsx

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
}

remix.init/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ async function shouldUseEdge(rootDirectory) {
143143

144144
async function main({ rootDirectory, packageManager }) {
145145
intro(`Welcome to Remix on Netlify`);
146-
console.log("rootDirectory", rootDirectory);
147146
const useEdge = await shouldUseEdge(rootDirectory);
148147
const spin = spinner();
149148
spin.start("Setting up your project");

0 commit comments

Comments
 (0)