This repository was archived by the owner on Jun 5, 2019. It is now read-only.
This repository was archived by the owner on Jun 5, 2019. It is now read-only.
node-modules CSS files #95
Open
Description
Im tring to use react-select component. This component uses its own css
recommended way to use this component is
import Select from 'react-select';
import "react-select/dist/react-select.css";
Bu I got error
XXX/node_modules\react-select\dist\react-select.css:8 Uncaught SyntaxError: Unexpected token .
at createScript (vm.js:53)
at Object.runInThisContext (vm.js:95)
at Module._compile (module.js:543)
at Object.Module._extensions..js (module.js:580)
at Module.load (module.js:488)
at tryModuleLoad (module.js:447)
at Function.Module._load (module.js:439)
at Module.require (module.js:498)
at require (internal/module.js:20)
at u (app.tsx:26)
I believe it is caused by .instructions('> [index.tsx] + fuse-box-css')
So external css files missed to CSSPlugin and imported as Javascript files
May be we have to create css-bundle for such files?