Как интегрировать logentries в угловой
Я просто следовал за их гидом
<html lang="en">
<head>
<title>Your page</title>
<script src="/js/le.min.js"></script>
<script>
// Set up le.js
LE.init('YOUR-LOG-TOKEN');
</script>
</head>
<script>
// log something
LE.log("Hello, logger!");
</script>
Я добавил их в свой индексный файл, но бросил http://localhost:4200/js/le.min.js net::ERR_ABORTED 404 (Not Found)
1 ответ
Вы можете добавить файл JavaScript в ваше приложение Angular, добавив scripts
свойство вашего проекта приложения в файле рабочей области приложения Angular angular.json
в корневом каталоге вашего проекта):
{
"version": 1,
// ...
"projects": {
"my-app": {
// ...
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
// ...
"scripts": [
// JavaScript file goes here
"js/le.min.js",
// Note: The `scripts` property accepts an array of objects or an array of strings
// See https://github.com/angular/angular-cli/blob/c5de8e3b0e5c1499a0a17da0208297cd82b36095/packages/angular_devkit/build_angular/src/browser/schema.json#L390-L419 for more info
]
// ...
}
// ...
}
// ...
}
}
// ...
}
Кроме того, вы можете установить это с помощью ng config
команда:
# Replace my-app with your actual project name in your angular.json file
ng config projects.my-app.architect.build.options.scripts[0] js/le.min.js