Skip to content

Commit

Permalink
feat(platform): improve nx plugin and add tRPC support (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
goetzrobin authored May 11, 2023
1 parent 98ed521 commit 5a25787
Show file tree
Hide file tree
Showing 38 changed files with 2,009 additions and 380 deletions.
4 changes: 2 additions & 2 deletions apps/trpc-app/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html class='dark h-full' lang='en'>
<html lang='en'>
<head>
<meta charset='utf-8' />
<title>SPARTAN - Notes App</title>
Expand All @@ -8,7 +8,7 @@
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel='stylesheet' href='/src/styles.css' />
</head>
<body class='h-full bg-zinc-900'>
<body>
<trpc-app-root></trpc-app-root>
<script type='module' src='/src/main.ts'></script>
</body>
Expand Down
3 changes: 0 additions & 3 deletions apps/trpc-app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ import { RouterOutlet } from '@angular/router';
selector: 'trpc-app-root',
standalone: true,
imports: [RouterOutlet],
host: {
class: 'max-w-screen-md mx-auto block h-full bg-zinc-900 text-zinc-50',
},
changeDetection: ChangeDetectionStrategy.Default,
template: ` <router-outlet></router-outlet> `,
})
Expand Down
416 changes: 369 additions & 47 deletions apps/trpc-app/src/app/pages/index.page.ts

Large diffs are not rendered by default.

Loading

0 comments on commit 5a25787

Please sign in to comment.