5
私はリソースをバンドルするためにWebpackを使用しています。現在、CSSファイルとJSファイルの両方をbundle.jsという別のファイルにバンドルしています。 JSとCSSの両方をHTMLファイルにインラインで埋め込むにはどうしたらいいですか?インラインJavaScriptとWebpackのCSS
import HtmlWebpackPlugin from 'html-webpack-plugin';
import {HotModuleReplacementPlugin} from 'webpack';
export default {
entry: {app: './test/dev'},
module: {
loaders: [
{test: /\.js/, loader: 'babel-loader', exclude: /node_modules/},
{test: /\.scss$/, loader: 'style!css!sass'}
]
},
plugins: [new HotModuleReplacementPlugin(), new HtmlWebpackPlugin()],
devtool: 'eval-source-map'
};
あなたが解決策を見つけますか? –
私はそれを解決するためにgrunt-processhtml https://github.com/dciccale/grunt-processhtmlを使用しています。 – VJAI