Skip to content

Commit

Permalink
Merge 159b706 into 0141bfd
Browse files Browse the repository at this point in the history
  • Loading branch information
pomek committed Dec 3, 2020
2 parents 0141bfd + 159b706 commit e645caa
Show file tree
Hide file tree
Showing 3 changed files with 316 additions and 21 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -86,7 +86,7 @@
"react-rnd": "^10.0.0",
"redux": "^4.0.5",
"sinon": "^7.2.3",
"style-loader": "^0.23.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
Expand Down
10 changes: 9 additions & 1 deletion webpack.config.js
Expand Up @@ -36,7 +36,15 @@ module.exports = ( env, argv ) => {
{
test: /\.css$/,
loaders: [
'style-loader',
{
loader: 'style-loader',
options: {
injectType: devMode ? 'styleTag' : 'singletonStyleTag',
attributes: {
'data-cke-inspector': true
}
}
},
{
loader: 'css-loader',
options: {
Expand Down

0 comments on commit e645caa

Please sign in to comment.