Windows 10. https://robots.thoughtbot.com/setting-up-webpack-for-react-and-hot-module-replacementの React + Webpack チュートリアルに従っていますが、インデックスをコピーする必要があるポイントで立ち往生していますapp/ フォルダーから dist/ フォルダーへの .html。/dist フォルダーに直接コピーする代わりに、index.html が dist/app/ フォルダーにコピーされます。助けていただけますか?
これが私のwebpack.config.jsファイルです
module.exports = {
context: __dirname + "/app",
entry: {
javascript: "./app.jsx",
html: "./index.html"
},
output: {
filename: 'app.js',
path: __dirname + "/dist",
publicPath: __dirname + "/dist"
},
module: {
loaders: [
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react']
}
},
{
test: /\.html$/,
loader: 'file-loader?name=[name].[ext]'
}
]
}
};
フォルダ構造
├───app
│ app.jsx
│ greeting.jsx
│ index.html
│
└───dist
前もって感謝します!