-
Notifications
You must be signed in to change notification settings - Fork 12
fix: update readme with installation notes for Angular 19 #223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Deploy Preview for plugin-angular-universal-demo ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Create a `netlify.toml` in the root of your project. Your file should include the plugins section below: | ||
### For Angular 19 | ||
|
||
```toml | ||
[[plugins]] | ||
package = "@netlify/angular-runtime" | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is no longer needed with autoinstallation in CLI
2f00248
to
fd97f0b
Compare
// Example API endpoints can be defined here. | ||
// Uncomment and define endpoints as necessary. | ||
// const pathname = new URL(request.url).pathname; | ||
// if (pathname = '/api/hello') { | ||
// return Response.json({ message: 'Hello from the API' }); | ||
// } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taking a page from what Angular scaffolds with commented out example ( https://github.com/angular/angular-cli/blob/main/packages/schematics/angular/ssr/files/application-builder/server.ts.template#L17-L27 )
overall unrelated to rest of changes and can drop it from here
b086bb6
to
4a1e5ca
Compare
No description provided.