Extracting and referencing multiple CSS files in ejected create-react-app
I have an ejected create-react-app (webpack version 3.8.1) that will be implemented as a third-party widget on other websites.
The components are rendered in multiple iframes using react-frame-component.
When styling the components inside iframes I include the css in the head of the iframe.
Right now I'm doing it by loading the css into a string like this:
// IframeComponentOne.js
const innerStyles = require("./iframe-component-one-styles.scss").toString();
render() {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompA />
<CompB />
...
</Frame>
)
}
// IframeComponentTwo.js
const innerStyles = require("./iframe-component-two-styles.scss").toString();
render () {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompC />
<CompD />
...
</Frame>
)
}
However, to minimize bundle size, and defer css loading, I would like to extract the css into separate files and link to them in the iframes like this:
render() {
return (
<Frame
head={<link rel="stylesheet" href="specific-frame.[hash].css">}
>
<CompX />
<CompY />
...
)
</Frame>
I'm aware that I probably need to use extract-text-webpack-plugin to extract the different innerStyles, but can't the webpack setup right.
How would a webpack setup for this look?
How do I reference the extraced css bundles with content hashes in the head of the iframe components?
reactjs webpack create-react-app
add a comment |
I have an ejected create-react-app (webpack version 3.8.1) that will be implemented as a third-party widget on other websites.
The components are rendered in multiple iframes using react-frame-component.
When styling the components inside iframes I include the css in the head of the iframe.
Right now I'm doing it by loading the css into a string like this:
// IframeComponentOne.js
const innerStyles = require("./iframe-component-one-styles.scss").toString();
render() {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompA />
<CompB />
...
</Frame>
)
}
// IframeComponentTwo.js
const innerStyles = require("./iframe-component-two-styles.scss").toString();
render () {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompC />
<CompD />
...
</Frame>
)
}
However, to minimize bundle size, and defer css loading, I would like to extract the css into separate files and link to them in the iframes like this:
render() {
return (
<Frame
head={<link rel="stylesheet" href="specific-frame.[hash].css">}
>
<CompX />
<CompY />
...
)
</Frame>
I'm aware that I probably need to use extract-text-webpack-plugin to extract the different innerStyles, but can't the webpack setup right.
How would a webpack setup for this look?
How do I reference the extraced css bundles with content hashes in the head of the iframe components?
reactjs webpack create-react-app
add a comment |
I have an ejected create-react-app (webpack version 3.8.1) that will be implemented as a third-party widget on other websites.
The components are rendered in multiple iframes using react-frame-component.
When styling the components inside iframes I include the css in the head of the iframe.
Right now I'm doing it by loading the css into a string like this:
// IframeComponentOne.js
const innerStyles = require("./iframe-component-one-styles.scss").toString();
render() {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompA />
<CompB />
...
</Frame>
)
}
// IframeComponentTwo.js
const innerStyles = require("./iframe-component-two-styles.scss").toString();
render () {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompC />
<CompD />
...
</Frame>
)
}
However, to minimize bundle size, and defer css loading, I would like to extract the css into separate files and link to them in the iframes like this:
render() {
return (
<Frame
head={<link rel="stylesheet" href="specific-frame.[hash].css">}
>
<CompX />
<CompY />
...
)
</Frame>
I'm aware that I probably need to use extract-text-webpack-plugin to extract the different innerStyles, but can't the webpack setup right.
How would a webpack setup for this look?
How do I reference the extraced css bundles with content hashes in the head of the iframe components?
reactjs webpack create-react-app
I have an ejected create-react-app (webpack version 3.8.1) that will be implemented as a third-party widget on other websites.
The components are rendered in multiple iframes using react-frame-component.
When styling the components inside iframes I include the css in the head of the iframe.
Right now I'm doing it by loading the css into a string like this:
// IframeComponentOne.js
const innerStyles = require("./iframe-component-one-styles.scss").toString();
render() {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompA />
<CompB />
...
</Frame>
)
}
// IframeComponentTwo.js
const innerStyles = require("./iframe-component-two-styles.scss").toString();
render () {
return (
<Frame
head={<style>{innerStyles}</style>}
>
<CompC />
<CompD />
...
</Frame>
)
}
However, to minimize bundle size, and defer css loading, I would like to extract the css into separate files and link to them in the iframes like this:
render() {
return (
<Frame
head={<link rel="stylesheet" href="specific-frame.[hash].css">}
>
<CompX />
<CompY />
...
)
</Frame>
I'm aware that I probably need to use extract-text-webpack-plugin to extract the different innerStyles, but can't the webpack setup right.
How would a webpack setup for this look?
How do I reference the extraced css bundles with content hashes in the head of the iframe components?
reactjs webpack create-react-app
reactjs webpack create-react-app
asked Nov 19 '18 at 19:48
20832083
73921129
73921129
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you upgrade to Webpack 4, you can do this without much additional configuration with mini-css-extract-plugin.
With webpack 3, you will need this configuration in your webpack config file
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
}
]
},
plugins: [
new ExtractTextPlugin('style.css')
]
}
We cannot say much without looking at your webpack config. but more or less, something along these lines should get you your desired functionality.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381657%2fextracting-and-referencing-multiple-css-files-in-ejected-create-react-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you upgrade to Webpack 4, you can do this without much additional configuration with mini-css-extract-plugin.
With webpack 3, you will need this configuration in your webpack config file
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
}
]
},
plugins: [
new ExtractTextPlugin('style.css')
]
}
We cannot say much without looking at your webpack config. but more or less, something along these lines should get you your desired functionality.
add a comment |
If you upgrade to Webpack 4, you can do this without much additional configuration with mini-css-extract-plugin.
With webpack 3, you will need this configuration in your webpack config file
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
}
]
},
plugins: [
new ExtractTextPlugin('style.css')
]
}
We cannot say much without looking at your webpack config. but more or less, something along these lines should get you your desired functionality.
add a comment |
If you upgrade to Webpack 4, you can do this without much additional configuration with mini-css-extract-plugin.
With webpack 3, you will need this configuration in your webpack config file
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
}
]
},
plugins: [
new ExtractTextPlugin('style.css')
]
}
We cannot say much without looking at your webpack config. but more or less, something along these lines should get you your desired functionality.
If you upgrade to Webpack 4, you can do this without much additional configuration with mini-css-extract-plugin.
With webpack 3, you will need this configuration in your webpack config file
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'sass-loader']
})
}
]
},
plugins: [
new ExtractTextPlugin('style.css')
]
}
We cannot say much without looking at your webpack config. but more or less, something along these lines should get you your desired functionality.
edited 21 hours ago
answered Nov 20 '18 at 14:45
Dinesh PandiyanDinesh Pandiyan
2,538925
2,538925
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381657%2fextracting-and-referencing-multiple-css-files-in-ejected-create-react-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown