早午餐不编译bootstrap.css并且Javascript编译的文件不运行

时间:2016-08-01 21:00:20

标签: brunch

所以我希望将dist/bootstrap/css/bootstrap.css添加到我的style.css中。以下代码不起作用。在调试模式下,它表示它根本不触及dist/bootstrap/css/bootstrap.css

我的第二个问题是,我编译的JS文件没有运行。说我做console.log,编译后,它没有被执行。我已经看过这篇帖子,试过autoRequire配置,仍然无法正常工作。我似乎在autoRequire配置上放错了路径。

module.exports = {
  paths: {
    watched: [
      "./static/javascripts",
      "./static/stylesheets"
    ],

    public: "./public"
  },

  files: {
    javascripts: {
      joinTo: "/javascripts/app.js"
    },

    stylesheets: {
      joinTo: "/stylesheets/app.css"
    }
  },

  modules: {
    autoRequire: {
      '/javascripts/app.js': ['app']
    }
  },

  npm: {
    enabled: true,
    styles: {
      bootstrap: ["dist/bootstrap/css/bootstrap.css"]
    }
  }
};

0 个答案:

没有答案