如何在laravel npm install中将bootstrap链接到我的刀片文件?

时间:2018-06-24 17:17:34

标签: twitter-bootstrap laravel npm

我正在使用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链接与刀片文件链接?

1 个答案:

答案 0 :(得分:1)

Bootstrap是laravel中的默认软件包。既然已经安装了,那么就运行 npm run dev将它们编译为public/css/app.csspublic/js/app.js,然后可以通过{{asset('css/app.css')}}{{asset('js/app.js')}}将它们链接到刀片文件。