我正在使用laravel 5.6并使用npm安装bootstrap。这是我的刀片文件,
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Acxian</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
</head>
<body>
<div class="content">
<div class="title m-b-md">
Acxian
</div>
<div class="links">
<a href="https://laravel.com/docs">Documentation</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="https://github.com/laravel/laravel">GitHub</a>
</div>
</div>
</div>
</body>
</html>
但以上引导程序不起作用,如何将npm链接与刀片文件链接?
答案 0 :(得分:1)
Bootstrap是laravel中的默认软件包。既然已经安装了,那么就运行
npm run dev
将它们编译为public/css/app.css
和public/js/app.js
,然后可以通过{{asset('css/app.css')}}
和{{asset('js/app.js')}}
将它们链接到刀片文件。