gpt4 book ai didi

laravel - 如何正确地将 node_modules 中的库包含到您的项目中?

转载 作者:行者123 更新时间:2023-12-04 02:54:44 25 4
gpt4 key购买 nike

这个问题可能很愚蠢,但直到现在才找到答案。
我正在尝试包含来自 的库节点模块 ,根据我从昨天开始学到的知识,我们应该在 中包含这样的内容 Assets :

{{-- bootstrap 4.1.3 --}} 
<link href="{{asset('css/app.css')}}" rel="stylesheet" type="text/css">

我要加 选择.js 进入我的项目,所以我使用了 npm install selectize --save 直接安装保存到 package.json(依赖) .

我的问题是,我现在如何包含它?就像默认 Bootstrap 一样。我怎样才能从 节点模块/公开/ ?
我应该手动完成还是有更专业/更清洁的方式来完成?
感谢您的帮助。

最佳答案

所以在看了很多 youtube 视频和谷歌之后,我找到了我正在寻找的答案。
以下是步骤:

1- 在 webpack.mix.js :

mix.scripts([
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/selectize/dist/js/selectize.js'
], 'public/js/app.js')

.styles([
'node_modules/bootstrap/dist/css/bootstrap.css',
'node_modules/selectize/dist/css/selectize.css',
'resources/assets/css/app.css'
], 'public/css/app.css');

2- npm 运行开发
3- 进口 在 View 中
<link rel="stylesheet" href="{{asset('css/app.css')}}">  
<script src="{{asset('js/app.js')}}"></script>

关于laravel - 如何正确地将 node_modules 中的库包含到您的项目中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51918932/

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