Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions examples/angular/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Nutrient Web SDK Angular Example

This example shows how Nutrient Web SDK can be integrated in an Angular project. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.0.2., although some simplifications have been made to focus on integrating PSPDFKit. For more guided instructions, check out our [blog post](https://www.nutrient.io/blog/2021/how-to-build-an-angular-pdf-viewer/).
This example shows how Nutrient Web SDK can be integrated in an Angular project. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.0.2., although some simplifications have been made to focus on integrating Nutrient Web SDK. For more guided instructions, check out our [blog post](https://www.nutrient.io/blog/2021/how-to-build-an-angular-pdf-viewer/).

[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FPSPDFKit%2Fnutrient-examples%2Ftree%2Fmain%2Fexamples%2Fangular)
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FPSPDFKit%2Fnutrient-web-examples%2Ftree%2Fmain%2Fexamples%2Fangular)

## Prerequisites

- [Node.js](https://nodejs.org)

## Support, Issues and License Questions

PSPDFKit offers support for customers with an active SDK license via [https://www.nutrient.io/support/request](https://www.nutrient.io/support/request)
Nutrient Web SDK offers support for customers with an active SDK license via [https://www.nutrient.io/support/request](https://www.nutrient.io/support/request)

Are you evaluating our SDK? That's great, we're happy to help out! To make sure this is fast, please use a work email and have someone from your company fill out our sales form: [https://www.nutrient.io/sales](https://www.nutrient.io/sales)

Expand All @@ -19,8 +19,8 @@ Are you evaluating our SDK? That's great, we're happy to help out! To make sure
Clone the repo:

```bash
git clone https://github.com/PSPDFKit/pspdfkit-web-example-angular
cd pspdfkit-web-example-angular
git clone https://github.com/PSPDFKit/nutrient-web-examples.git
cd nutrient-web-examples/examples/angular
```

Install the project dependencies:
Expand Down
14 changes: 7 additions & 7 deletions examples/angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"pspdfkit-web-example-angular": {
"nutrient-web-example-angular": {
"projectType": "application",
"schematics": {},
"root": "",
Expand All @@ -13,18 +13,18 @@
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/pspdfkit-web-example-angular",
"outputPath": "dist/nutrient-web-example-angular",
"index": "src/index.html",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/favicon.png",
"src/assets",
{
"glob": "**/*",
"input": "./node_modules/pspdfkit/dist/pspdfkit-lib/",
"output": "./assets/pspdfkit-lib/"
"input": "./node_modules/@nutrient-sdk/viewer/dist/nutrient-viewer-lib/",
"output": "./assets/nutrient-viewer-lib/"
}
],
"styles": ["src/styles.css"],
Expand Down Expand Up @@ -58,10 +58,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "pspdfkit-web-example-angular:build:production"
"buildTarget": "nutrient-web-example-angular:build:production"
},
"development": {
"buildTarget": "pspdfkit-web-example-angular:build:development"
"buildTarget": "nutrient-web-example-angular:build:development"
}
},
"defaultConfiguration": "development"
Expand Down
Loading
Loading