Конфиг вебпак 4 с Bootstrap 3 - PullRequest
       4

Конфиг вебпак 4 с Bootstrap 3

0 голосов
/ 01 ноября 2018

Я просто хочу настроить Bootstrap с помощью Webpack 4. Я использую MiniCssExtractPlugin для загрузки CSS и SASS. Вот мой Webpack config :

const path = require('path');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WebpackMd5Hash = require('webpack-md5-hash');


module.exports = {
    entry: { main: './src/index.js' },
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: '[name].[chunkhash].js'
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader"
                }
            },
            {
                test: /\.scss$/,
                use:  [  'style-loader', MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader']
            },
            {
                test: /\.(png|woff|woff2|eot|ttf|svg)$/,
                loader: "url?limit=5000"
            }


        ]
    },
    plugins: [
        new MiniCssExtractPlugin({
            filename: 'style.[contenthash].css',
        }),
        new HtmlWebpackPlugin({
            inject: false,
            hash: true,
            template: './src/index.html',
            filename: 'index.html'
        })

    ]
};

Я просто хочу добавить загрузчик и использовать его. Вот мой index.js

import 'bootstrap/dist/css/bootstrap.css'
import "./assets/main.scss"

console.log("Hello")

Когда я хочу запустить это, я получаю сообщение об ошибке:

ERROR in ./node_modules/bootstrap/dist/css/bootstrap.css 7:5
Module parse failed: Unexpected token (7:5)
You may need an appropriate loader to handle this file type.
|  */
| /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
> html {
|   font-family: sans-serif;
|   -webkit-text-size-adjust: 100%;
 @ ./src/index.js 3:0-43

Есть ли помощь? ценить это

1 Ответ

0 голосов
/ 01 ноября 2018

Добавьте это к вашей конфигурации.

module: {
    rules: [
        {
            test: /\.js$/,
            exclude: /node_modules/,
            use: {
                loader: "babel-loader"
            }
        },
        {
            test: /\.scss$/,
            use:  [  MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader']
        },

        {
            test: /\.css$/,
            use:  [  MiniCssExtractPlugin.loader, 'css-loader']
        },
        {
            test: /\.(png|woff|woff2|eot|ttf|svg)$/,
            loader: "url?limit=5000"
        }


    ]
},
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...