0
私は反応アプリケーションを構築しています。アプリケーションは開発インスタンスで正常に動作します。しかし、最終出力ファイルを開こうとすると、ファイルは更新されません。Node.jsでビルドファイルが更新されない
例 - 私はReactでHelloアプリを作成しました。今、私は反応ブートストラップで働いています。しかし、最終出力ファイルにはまだHelloが表示されます。
これは私のwebpack.config.jsは、エラーがどこにあるか
var HTMLWebpackPlugin = require('html-webpack-plugin');
var HTMLWebpackPluginConfig = new HTMLWebpackPlugin({
template: __dirname + '/app/index.html',
filename: 'index.html',
inject: 'body'
});
module.exports = {
entry: __dirname + '/app/index.js',
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.css$/,
loader: "style-loader!css-loader"
},
]
},
output: {
filename: 'transformed.js',
path: __dirname+'/build'
},
plugins: [HTMLWebpackPluginConfig]
};
が理解できないファイルです。助けてください:)
ええ、それは問題のようでした。ビルド ":" webpack "と定義されたカスタムルールがありました。 'npm run build'を実行するとそれが実行されました。ありがとうたくさん:D –