Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webpack import bootstrap .js and .css

I am building an app using react, bootstrap and webpack using es6 with babel.

But I can't import boostrap.js and bootstrap.css to my app.

My webpack.config.js

    var webpack = require('webpack'),
  HtmlWebpackPlugin = require('html-webpack-plugin'),
  path = require('path'),
  srcPath = path.join(__dirname, 'src');

module.exports = {
  target: 'web',
  cache: true,
  entry: {
    module: path.join(srcPath, 'module.js'),
    common: ['react', 'react-router', 'alt']
  },
  resolve: {
    root: srcPath,
    extensions: ['', '.js'],
    modulesDirectories: ['node_modules', 'src']
  },
  output: {
    path: path.join(__dirname, 'tmp'),
    publicPath: '',
    filename: '[name].js',
    library: ['Example', '[name]'],
    pathInfo: true
  },

  module: {
    loaders: [
      {test: /\.js?$/, exclude: /node_modules/, loader: 'babel?cacheDirectory'}
    ]
  },
  plugins: [
    new webpack.optimize.CommonsChunkPlugin('common', 'common.js'),
    new HtmlWebpackPlugin({
      inject: true,
      template: 'src/index.html'
    }),
    new webpack.ProvidePlugin({
           $: "jquery",
           jQuery: "jquery"
    }),
    new webpack.ProvidePlugin({
           bootstrap: "bootstrap.css",
    }),
    new webpack.NoErrorsPlugin()
  ],

  debug: true,
  devtool: 'eval-cheap-module-source-map',
  devServer: {
    contentBase: './tmp',
    historyApiFallback: true
  }
};

So in my .js files (react components) I am trying to do: import 'bootstrap'. But the css is not being implemented. The .js imports works well.

So how can I import boostrap or configure webpack?

like image 398
Fabho Avatar asked Sep 21 '15 01:09

Fabho


1 Answers

You need to do the following things to make it work:

  1. In your webpack config file, resolve section, make sure your bootstrap css file path is included.

As an example:

var bootstrapPath = path.join(     __dirname,     'development/bower_components/bootstrap/dist/css' ); 

Then in your webpack config object:

resolve: {     alias: {         jquery: path.join(__dirname, 'development/bower_components/jquery/jquery')     },     root: srcPath,     extensions: ['', '.js', '.css'],     modulesDirectories: ['node_modules', srcPath, commonStylePath, bootstrapPath] } 
  1. Make sure you have style loader and css loader. E.g. loaders:[{ test: /\.css$/, loader: "style-loader!css-loader" }]
  2. Use it in your js file require('bootstrap.min.css');
like image 163
Yunzhou Avatar answered Oct 18 '22 21:10

Yunzhou