Klein

Results 3 comments of Klein
trafficstars

I got 4 components having the same problem. Those failed to build with Webpack, but succeed in watch mode. It first fail in watch mode, but I got succeed after...

Looking for solution too, but it seem to be the expected behaviour, including the ~~promotional~~ comment of `// extracted by mini-css-extract-plugin` https://github.com/webpack-contrib/mini-css-extract-plugin/blob/1ffad9bee322bf289ac2a04823f6876a175ff313/test/enforce-esm.test.js#L20-L23 [related issue found](https://github.com/webpack-contrib/mini-css-extract-plugin/issues/358)

my solution, partial of my `webpack.config.js` to exclude prime vue from my project ```js { test: /\.css$/, exclude: /prime(vue|icons).+\.css$/, use: [MiniCssExtractPlugin.loader, "css-loader"], }, { test: /prime(vue|icons).+\.css$/, use: [ { loader:...