Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Meta
create-react-app
Commits
214fc8ee
Commit
214fc8ee
authored
8 years ago
by
Dan Abramov
Browse files
Options
Download
Email Patches
Plain Diff
Disable second pass of autoprefixer
parent
024b4d4f
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/webpack.config.prod.js
+4
-1
config/webpack.config.prod.js
with
4 additions
and
1 deletion
+4
-1
config/webpack.config.prod.js
+
4
-
1
View file @
214fc8ee
...
...
@@ -64,7 +64,10 @@ module.exports = {
{
test
:
/
\.
css$/
,
include
:
srcPath
,
loader
:
ExtractTextPlugin
.
extract
(
'
style
'
,
'
css!postcss
'
)
// Disable autoprefixer in css-loader itself:
// https://github.com/webpack/css-loader/issues/281
// We already have it thanks to postcss.
loader
:
ExtractTextPlugin
.
extract
(
'
style
'
,
'
css?-autoprefixer!postcss
'
)
},
{
test
:
/
\.
json$/
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets