0

html-webpack-plugin (および file-loader@6.2.0 と sass-loader@10.1.0) で動作するように webpack@5.10.0 (webpack-cli@4.2.0 を使用) を構成しました。

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const postcssPresetEnv = require('postcss-preset-env');

module.exports = {
  entry: {
    index: './src/index.js',
  },
  plugins: [
    new CleanWebpackPlugin(),
    new HtmlWebpackPlugin({
      template: './src/index.html',
    }),
    new MiniCssExtractPlugin({
      filename: '[name].css',
    }),
  ],
  output: {
    publicPath: './',
    filename: '[name].js',
    path: path.resolve(__dirname, 'dist'),
  },
  module: {
    rules: [
      {
        test: /\.s?css$/i,
        use: [
          { loader: MiniCssExtractPlugin.loader },
          'css-loader',
          { 
            loader: 'postcss-loader',
            options: {
              ident: 'postcss',
              plugins: () => [
                postcssPresetEnv(/* pluginOptions */)
              ]
            }
          },
          'sass-loader',
        ],
      },
      {
        test: /\.(png|svg|jpg|jpeg|gif)$/i,
        loader: 'file-loader',
      },
    ],
  },
};

その時点まで、すべてが正常に機能しています (style.scssにインポートされindex.js、スタイルシート自体が で 2 つの jpg をロードしますbackground-image: url(...))。

ここで、私の html テンプレート ( index.html) がファイル ( ) を参照し、それが (によって、別の名前で)<img src="./file.svg">コピーされます。file-loaderただし、決勝の参照はindex.htmlこの変更を反映する必要があります。

だから私はインストールしましたhtml-loader@1.3.2

  [...]
  module: {
    rules: [
      {
        test: /\.html$/i,
        loader: 'html-loader',
      },
  [...]

npx webpack buildこれ以上の指示なしでクラッシュするようになりました:

[webpack-cli] Compilation finished
assets by status 84 KiB [cached] 2 assets
./src/index.js 26 bytes [built] [code generated]
1 ERROR in child compilations
webpack 5.10.0 compiled with 1 error in 867 ms
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

それで?デバッグ情報を取得するには? 何がうまくいかなかったのですか?


$ npm list

a@1.0.0 /home/rslemos/workspace/a/webpack
├── clean-webpack-plugin@3.0.0
├── css-loader@5.0.1
├── file-loader@6.2.0
├── html-loader@1.3.2
├── html-webpack-plugin@4.5.0
├── lodash@4.17.20
├── mini-css-extract-plugin@1.3.2
├── node-sass@5.0.0
├── postcss-loader@3.0.0
├── postcss-preset-env@6.7.0
├── sass-loader@10.1.0
├── sass@1.30.0
├── style-loader@2.0.0
├── webpack-cli@4.2.0
└── webpack@5.10.0
4

0 に答える 0