Closed
Description
I think many CRA users like myself are using mdx-js/mdx
. The mdx docs for CRA setup
use create-react-app-rewired
, but I've managed just fine in CRA v1.x without ejecting or rewiring by inlining webpack loader and eslint overrides:
/* eslint-disable import/no-webpack-loader-syntax */
import Content from '!babel-loader!@mdx-js/loader!./Content.mdx';
I tried the same course of action in @2.0.0
but its not working for reasons I haven't looked into yet. (I'll leave details in a comment below. Raising at mdx-js
may be appropriate.)
THE REASON I'm submitting this issue is to identify MDX usage as a likely reason for ejecting/rewiring in response to @Timer's comment timarney/react-app-rewired#162 (comment). The future support outlook for rewired and missing workaround for CRA@next is unfortunate for MDX users.