rob-balfre / svelte-select

Svelte Select. A select component for Svelte
https://svelte-select-examples.vercel.app
Other
1.25k stars 175 forks source link

Webpack Module not found #667

Closed gponty closed 4 months ago

gponty commented 5 months ago

I use webpack 5.70 and i have this error :

Module build failed: Module not found: "./node_modules/svelte-floating-ui/index.js" contains a reference to the file "./core". This file can not be found, please check it for typos or update it if the file got moved. Any idea ? Thank you

mikiastilahun commented 4 months ago

Add the rule below to webpack.config.js file { test: /\.m?js/, resolve: { fullySpecified: false, }, },

gponty commented 4 months ago

Thank you, it's worked