Skip to content

Commit 9e28379

Browse files
committed
Fix merge conflict
1 parent be18c81 commit 9e28379

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

config/webpack.config.dev.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,19 +181,18 @@ module.exports = {
181181
// a plugin that prints an error when you attempt to do this.
182182
// See https://github.com/facebookincubator/create-react-app/issues/240
183183
new CaseSensitivePathsPlugin(),
184-
<<<<<<< HEAD
184+
// Warn on using .jsx files, prefer using .js only.
185+
// See https://github.com/facebookincubator/create-react-app/issues/290
185186
new CheckFilenamePlugin({
186187
regex: /\.jsx$/,
187188
error: function(filename) {
188189
return 'Module load aborted: .jsx extensions are not allowed, use .js extensions only. See create-react-app/issues/290 for more info.\n\tFor: ' + filename;
189190
}
190191
}),
191-
=======
192192
// If you require a missing module and then `npm install` it, you still have
193193
// to restart the development server for Webpack to discover it. This plugin
194194
// makes the discovery automatic so you don't have to restart.
195195
// See https://github.com/facebookincubator/create-react-app/issues/186
196-
>>>>>>> master
197196
new WatchMissingNodeModulesPlugin(paths.appNodeModules)
198197
]
199198
};

0 commit comments

Comments
 (0)