【问题标题】:Error importing outside bootstrap-sass library using webpack使用 webpack 导入外部 bootstrap-sass 库时出错
【发布时间】:2016-03-22 01:12:17
【问题描述】:

我正在使用 React、Webpack 和 Bootstrap-Sass 创建客户端应用程序。我正在尝试导入外部 Bootstrap-sass 库,但在终端中不断收到以下错误:

 "File to import not found or unreadable: bootstrap-sass/assets/stylesheets/bootstrap/variables"

我的 webpack.config.js 中的 scss 加载器似乎没有正确读取 bootstrap-sass 中的变量文件;但是,我尝试使用/创建几个不同的 scss 加载器,但没有一个能够解决这个问题。

这是我的 webpack.config.js 文件:

 var StaticSiteGeneratorPlugin = require('static-site-generator-    webpack-plugin');
 var data = require('./data');
 var path = require('path');


 module.exports = {
     entry: './entry.jsx',

output: {
    filename: 'bundle.js',
    path:  __dirname,
    libraryTarget: 'umd'
},

module: {
    loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' },
{ test: /\.jsx$/, exclude: /node_modules/, loader: 'babel-loader' },
{ test: /\.css$/, loaders: [ 'css' ] },
{ test: /bootstrap-sass\/assets\/javascripts\//, loader: 'imports?jQuery=jquery' },
{ test: /\.scss$/, loader: "css!sass?includePaths[]=" + 
    path.resolve(__dirname, "./bower_components/bootstrap-sass/assets/stylesheets/")},
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/font-woff" },
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/font-woff" },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/octet-stream" },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file" },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=image/svg+xml" }
    ]
},

   plugins: [
 new StaticSiteGeneratorPlugin('bundle.js', data.routes, data)
   ],
 }

base.scss 文件:

 // include bootstrap stylesheets
 $icon-font-path: "../node_modules/bootstrap-   sass/assets/fonts/bootstrap/";  
 @import "../node_modules/bootstrap-   sass/assets/stylesheets/_bootstrap.scss";
 @import "../node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss";
 @import "../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss";
 @import"index.scss";

 // include omni stylesheets
 @import "../bower_components/omni-bootstrap/assets/stylesheets/omni";

非常感谢任何帮助或建议!

【问题讨论】:

    标签: webpack bootstrap-sass webpack-style-loader


    【解决方案1】:

    更改以下行:

    @import "../bower_components/omni-bootstrap/assets/stylesheets/omni";
    

    到:

    @import "../../bower_components/omni-bootstrap/assets/stylesheets/omni";
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2021-08-10
      • 1970-01-01
      • 2016-11-03
      • 2020-02-01
      • 2018-05-23
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多