I have this webpack.config
:
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackInlineStylePlugin = require('html-webpack-inline-style-plugin');
const path = require('path');
module.exports = {
mode: 'production',
entry: {
main: [
'./src/scss/main.scss'
]
},
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '',
filename: 'js/[name].js'
},
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: true
})
]
},
module: {
rules: [
{
test: /\.scss$/,
use: [
'css-loader',
'sass-loader',
]
},
// ... other stuffs for images
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/main.html',
filename: 'main.html'
}),
new HtmlWebpackInlineStylePlugin()
]
};
I tried this configuration, but this isn't working well, because the CSS code is generated into the main.css file.
But if I write the CSS code directly into the <head>
tag as a <style>
, it's working.
How can I set up the webpack to put the CSS
code from Sass
files into the HTML
as inline CSS?
Or is there a tick to put the CSS first into the <head>
and after this the html-webpack-inline-style-plugin
plugin can parse it?
I've done this before only using style-loader that by default will add your css as style inline at <head>
tag. This won't generate any output css file, this just will create one/multiple style tags with all you styles.
webpack.config.js
module.exports = {
//... your config
module: {
rules: [
{
test: /\.scss$/, // or /\.css$/i if you aren't using sass
use: [
{
loader: 'style-loader',
options: {
insert: 'head', // insert style tag inside of <head>
injectType: 'singletonStyleTag' // this is for wrap all your style in just one style tag
},
},
"css-loader",
"sass-loader"
],
},
]
},
//... rest of your config
};
index.js (entry point script)
import './css/styles.css';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With