我遇到的问题是,当使用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;
答案 0 :(得分:2)
您可以尝试使用
const testImage = require('../images/test2.png');
因为图像不是模块。所以你不能导入它。
编辑(肖恩)我们可以使用declare module '*.png'
导出图片文件
请参阅github中的post
答案 1 :(得分:0)
你可以试试
<img src= "./images/test2/png>"
它对我有用