使用带打字稿的 webpack 导入不识别图像模块

Imports not recognizing image modules in react using webpack with typescript

我遇到一个问题,在使用 webpack 加载图像文件时出现以下错误。如果我 运行 带有 webpack-dev-server 的应用程序,图像将显示以便能够将其拉入。

文件夹结构如下所示:

- home
   -home.tsx
-images
   -test2.png

这是 webpack 配置文件,我在其中尝试模块化要与导入一起使用的图像:

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin')

const config = {
  entry: './src/index.tsx',
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'dist')
  },
  module: {
    rules: [
      {
        test: /\.tsx?$/,
        use: 'ts-loader',
        exclude: /node_modules/
      },
      {
        test: /\.less$/,
        use: [
          {
            loader: "style-loader"
          },
          {
            loader: "css-loader"
          },
          {
            loader: "less-loader"
          }
        ]
      },
      { 
        test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
        use:'url-loader' 
      },
      { 
        test: /\.(png|jp(e*)g|svg)$/,
        use: [
          {
            loader: "url-loader",
            options: {
              limit: 10000,
              name: 'images/[hash]-[name].[ext]',
            },
          }
        ]
      }
    ]
  },
  resolve: {
    extensions: [ '.ts', '.tsx', '.js' ]
  },
  plugins: [
    new HtmlWebpackPlugin({
        title: 'Application Name',
        template: path.join(__dirname, 'src/index.html')
    })
  ],
  devtool: 'inline-source-map',
  devServer: {
    contentBase: path.join(__dirname, 'dist'),
    historyApiFallback: true,
    compress: true,
    port: 8080
  }
};

module.exports = config;

你可以试试

const testImage = require('../images/test2.png');

因为图像不是模块。所以你不能导入这个。

编辑(肖恩)

我们可以用declare module '*.png'导出图像文件 请参阅 github

中的 post

你可以试试

<img src= "./images/test2/png>"

对我有用