Diego

Results 4 comments of Diego

In your webpack config you need something like that: ```javascript module: { rules: [{ test: /\.css$/, use: [ { loader: 'css-loader', options: { modules: true } } ] }] }...

I'm using `n` and I fixed it with: 1. `cd ~/.avn` 2. `n auto` (this installed node v4.0) 3. `cd && rm -R ~/.avn` 4. `npm install -g avn avn-nvm...

@pixelizedPeanut Is latest version published? In https://www.npmjs.com/package/leaflet.pattern last publish is 2 years old and here in repo the latest commit was 20 days ago.

Same issue here with Next 13.1 and Typescript. I've found three workarounds for this: 1. use `default export MyComponent` 2. don't reexport the component through an index: `export * from...