グローバル変数などを用意して、必要に応じて簡単にパスを変更できるようにしたい。私もそれを構築するときに別の道を持っていたいと思います。React - イメージをインポートする
requireを使用せずにインポートする方が良いですか?
const URL="./../../img";
//withURL doesn't work
export const logo1 = require(URL+ "/Global/logo1.png");
//this works but too long
export const logo2 = require("./../../img/Editorial/logo2.jpg");
webpackにはこれを設定できる方法がありますか?
var webpack = require("webpack");
var path = require("path");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var extractPlugin = new ExtractTextPlugin({
filename: "App.css"
});
module.exports = {
entry: './src/js/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'app.bundle.js',
},
module: {
rules: [
{
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: {
presets: ['react', 'es2015']
}
}
]
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: ['css-loader']
})
},
{
test: /\.html$/,
use: ['html-loader']
},
{
test: /\.(png|jpg|svg)$/,
use: [
{
loader: 'file-loader',
options: {
name:'[name].[ext]',
outputPath: 'img/'
}
}
]
}
],
},
plugins: [
extractPlugin,
new HtmlWebpackPlugin({
template: 'src/index.html'
})
]
};
はい、コードを修正しました。これはrequireでは機能せず、constなしのURLのみでなければなりません。 – Camila
必要なときに返されているものを見てみましたか? console.log これは文字列を返すはずです。そうでなければ、ウェブパックの設定が間違っています – albertfdp
これはアプリケーションを壊します。私は私のwebpackを追加しました - あなたは一見を持つことができますか? require()の中にURL以外のものを書くことはできますか? – Camila