Skip to content

Commit

Permalink
Adjust length
Browse files Browse the repository at this point in the history
  • Loading branch information
cesalberca committed Aug 24, 2024
1 parent 0e3ef9a commit 6d321aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/blog/(posts)/angular-jest/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const metadata = {
date: '2019-11-03',
image: 'desert.jpg',
categories: ['angular', 'testing'],
readTime: 10,
readTime: 8,
summary:
'You want to change Karma in an Angular application to a better test runner like Jest? Then this tutorial is the one you were looking for!',
}
Expand Down
10 changes: 4 additions & 6 deletions src/app/blog/(posts)/create-angular-17-project/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const metadata = {
title: 'Create an Angular 17 project',
date: '2024-04-25',
categories: ['angular'],
readTime: 5,
readTime: 6,
image: 'create-angular-17-project/project-creation.png',
summary:
'In this article, we will explore setting up a new Angular project with SSR (Server-Side Rendering) and see what new configurations it brings.',
Expand All @@ -27,11 +27,9 @@ With the SSR option enabled, Angular will create two execution environments: cli

If we examine the project structure, we will see that it has created a series of configuration files for both the client and server parts. Here's a summary:

| Client | Server |
| ------------- | -------------------- |
| main.ts | main.server.ts |
| app.config.ts | app.config.server.ts |
| ~ | server.ts |
* main.ts ➜ main.server.ts
* app.config.ts ➜ app.config.server.ts
* server.ts (Server-only file)

### `server.ts`

Expand Down
2 changes: 1 addition & 1 deletion src/app/blog/(posts)/theming/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import MdxLayout from '../../mdx-layout'
export const metadata = {
title: 'Theming',
slug: 'theming',
readTime: 10,
readTime: 8,
date: '2019-06-06',
categories: ['css', 'software-development'],
image: 'art-artistic-canvas.jpg',
Expand Down

0 comments on commit 6d321aa

Please sign in to comment.