如何在我的应用程序客户端将Bootstrap 4与Parcel结合使用?

时间:2019-07-17 05:31:32

标签: express bootstrap-4 pug bower parceljs

在Bower的网站上,他们建议使用Parcel作为前端。过去,我是通过Bower来做到这一点的:

npm install -g bower

在我的app.js中,我告诉Express客户端的位置:

app.use(express.static(path.join(__dirname, 'public')))

.bowerrc @根级别中,它包括:

{
  "directory":"public/bower_components"
}

,然后在终端中运行bower i bootstrapbower i jquery

结果是:

/application
  /models
  /node_modules
  /public
    /bootstrap
    /jquery
  /views
    index.pug
  .bowerrc
  app.js
  package.json

在哈巴狗中,我将Bootstrap称为:

doctype html
html
  head
    title #{title}
    link(rel='stylesheet' href='/bower_components/bootstrap/dist/css/bootstrap.min.css')
  body
    block content
    br
    hr

如何在Parcel中而不是Bower中完成此操作?从研究中我只能找到:“ How do I use jQuery and jQuery-ui with Parcel (bundler)?”在Parcel文档中找不到任何结果。

0 个答案:

没有答案