diff --git a/app/entry.server.tsx b/app/entry.server.tsx deleted file mode 100644 index beacf24..0000000 --- a/app/entry.server.tsx +++ /dev/null @@ -1 +0,0 @@ -export { handleRequest as default } from "@netlify/remix-adapter"; diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 8a2235b..5347369 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -1,4 +1,4 @@ -import type { MetaFunction } from "@remix-run/deno"; +import type { MetaFunction } from "@remix-run/node"; export const meta: MetaFunction = () => { return [ diff --git a/remix.init/edge/app/routes/_index.tsx b/remix.init/edge/app/routes/_index.tsx new file mode 100644 index 0000000..48f29a2 --- /dev/null +++ b/remix.init/edge/app/routes/_index.tsx @@ -0,0 +1,41 @@ +import type { MetaFunction } from "@netlify/remix-runtime"; + +export const meta: MetaFunction = () => { + return [ + { title: "New Remix App" }, + { name: "description", content: "Welcome to Remix!" }, + ]; +}; + +export default function Index() { + return ( +