0
在我的Laravel5.4項目中,我剛剛通過npm安裝了一個包。無法在laravel中使用npm中的新安裝包5.4
npm install noty
我的新的noty文件夾實際上是在我的node_modules文件夾中創建的。如何要求新安裝的軟件包?現在我無法使用它。
,如果我做
require('noty');
和我的代碼運行
noty({
type: 'success',
layout: 'bottomLeft',
text: '3'
});
我仍然得到以下錯誤:
Uncaught ReferenceError: noty is not defined
問候瓦倫丁
'require('noty');'。 – TheFallen
是的,我知道,但它不會找到我安裝的軟件包「noty」。 – user3553562
你可以添加你的問題確切的錯誤。 – TheFallen