我正在使用nodemon,一旦包含paseto.js,应用就会崩溃:
data() {
return {
url: '/api/upload/product',
uploadOptions: {
target: null,
testChunks: false
},
attrs: {
accept: ['.csv', '.xls', '.xlsx'],
},
product: null,
items: [
'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten',
],
};
},
methods: {
update() {
this.uploadOptions.target = `${this.url}/${this.product}`;
},
},
const Paseto = require('paseto.js')
我在他们的仓库中打开了一个问题,但我想知道如何获取跟踪日志以了解发生这种情况的原因以及为什么发生这种情况。
供您参考:我将节点更新为LTS 8.12.0,并删除了[nodemon] app crashed - waiting for file changes before starting...
并重新安装了软件包。
谢谢!