如何在node_modules中链接文件

时间:2018-08-27 11:15:15

标签: laravel

大家好,我正在尝试链接使用npm安装的软件包。但是我无法将文件链接到我的html。我也使用了asset(),但是没有用。谢谢!

<link href="node_modules/fullpage.js/dist/fullpage.css">

<script src="node_modules/fullpage.js/dist/fullpage.js"></script>

1 个答案:

答案 0 :(得分:0)

我认为您不能直接链接到您的node_modules文件夹

要么将其作为导入添加到您的app.scss和app.js中,要么使用laravel mix提取它

混合使用

 mix.copy('node_modules/fullpage.js/dist/fullpage.js', 'public/js')

在html头中

<script src="{{ mix("js/fullpage.js") }}"></script>