1

I'm trying to import ui-select in my js file using yarn and webpack than import it in my module as follow.

import ngSanitize from 'angular-sanitize';
import uiselect from 'ui-select';
import 'ui-select/dist/select.css';

export default angular.module('app.module', [
/** ... **/
ngSanitize,
'ui.select'
/** ... **/
])

but When I check my generated css file I can see that the CSS was correctly imported however not the js.(there is no issue on my webpack config as I can see ngSanitize js codeon the generated vendor file)

1 Answer 1

1

it seems to be correct following this ui-select github issue

Would you share more details about your webpack.config.js file, may be you are generating it in another output file.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.