gajus / gajus/babel-plugin-react-css-modules
babel-plugin-react-css-modules doesn't recognize the @ path
- Lingua principale
- JavaScript
- Stelle
- 2k
- Fork
- 159
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
I added @/common/styles/init.css to man.jsx in the main entry file, but it gave me the following error message:
```bash
Error: Cannot find module '@/common/styles/init.css'
src/main.jsx
Require stack:
- /Users/cuihao04/Desktop/git/react-editor/node_modules/.pnpm/babel-plugin-react-css-modules@5.2.6_@babel+core@7.22.1/node_modules/babel-plugin-react-css-modules/dist/index.js
```
But I've already configured the @ configuration in webpack,
Here's the babel-plugin-react-css-modules configuration:
```js
plugins: [
[
"react-css-modules",
{
context: resolve(__dirname, './src'),
exclude: 'node_modules',
generateScopedName: '[path]__[name]__[local]',
webpackHotModuleReloading: true,
filetypes: {
'.less': {
"syntax": "postcss-less"
},
'.css': {
syntax: 'postcss-styled'
}
}
}
]
]
```
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Direzione di ricerca
Start with the import in src/main.jsx and the shown react-css-modules Babel configuration, then compare how the @ alias is configured in webpack with how the plugin resolves CSS paths. Done means '@/common/styles/init.css' resolves successfully through the plugin without the Cannot find module error.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- babel, javascript, webpack
- Ambito
- build-system, frontend
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100