gpt4 book ai didi

angular - 如何调试 angular 13 库?

转载 作者:行者123 更新时间:2023-12-05 03:26:27 27 4
gpt4 key购买 nike

我创建了一个新的 angular 13 库,但遇到了问题。所以试图调试它。我按照现有 Angular 库问题中提到的步骤更新 Angular json,如

{
"projects": {
"your-app": {
"architect": {
"serve": {
"options": {
"vendorSourceMap": true

但我仍然无法使用 firefox 开发工具来调试库。

最佳答案

由于您使用的是 Angular 版本 12 或更高版本,因此 vendorSource 将被弃用,而必须添加 sourceMapscripts styles, vendor 在主机应用程序的 angular.json

构建选项中为真
{
"projects": {
"your-app": {
"architect": {
"build": {
"options": {
"sourceMap": {
"scripts": true,
"styles": true,
"vendor": true
},

关于angular - 如何调试 angular 13 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71731767/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com