Tim O'Connor
Tim O'Connor
You can use the [exclude](https://github.com/gajus/babel-plugin-react-css-modules#configuration) option to exclude non css-modules stylesheets. You might also need to specify a name for each import. ```js import list from "./css/list.rcss"; import fdt from...
The documentation says that excludes accepts a string RegEx so you should be able to write excludes: '\\.css$' (I haven't tested this). I was suggesting supplying a name just to...
I'm also seeing this issue. If you dispatch a thunk, any actions that are then dispatched by the thunk are dispatched on the global store (and not tagged with reduxFractalTriggerComponent...
I would also like the ability to do this. I am using the Play Framework where by convention, static javascript files are kept in app/public. I would rather change the...
I guess we have a different understanding of what should be in app/assets. From what I have read, app/assets denotes source assets to be compiled/transformed in some way. For example,...