I'm trying to use Webpack + Semantic UI but without success. I tried...
npm i semantic-ui-css
- In my
index.js
..import semantic from 'semantic-ui-css'
I add configuration into my
webpack.config.js
resolve: { alias: {'semantic-ui': path.join(__dirname, "node_modules", "semantic-ui-css", semantic.min.js") }
But when I try to buid... error..
ERROR in ./src/index.js Module not found: Error: Cannot resolve module 'sematic-ui-css' in /Users/ridermansb/Projects/boilerplate-projects/vue/src @ ./src/index.js 15:20-45
Full source here
If you came here trying to use 'semantic-ui-react' you need to install 'semantic-ui-css' seperatly to grab the css files:
and then import it in the index.js
All you have to do:
css:
import 'semantic-ui-css/semantic.css';
js:
import 'semantic-ui-css/semantic.js';
This solves my problem with webpack and react.