@spartacus-easy/snapchat-lens
v2211.20.2
Published
## Description
Downloads
4
Keywords
Readme
@spartacus-easy/snapchat-lens
Description
Spartacus library for Snapchat.
How to Install
Add the library in the Spartacus project with the following command:
yarn add @spartacus-easy/snapchat-lens
Add the following to
angular.json
:{ "projects": { "<app-name>": { "architect": { "build": { "options": { "assets": [ { "glob": "**/*", "input": "node_modules/@spartacus-easy/snapchat-lens/assets", "output": "assets" } ] } } } } } }
How to Use
The library can be included in the Spartacus project as follow:
import { SnapchatLensModule } from "@spartacus-easy/snapchat-lens";
@NgModule({
imports: [
...
SnapchatLensModule
],
})