webpack-encore icon indicating copy to clipboard operation
webpack-encore copied to clipboard

A simple but powerful API for processing & compiling assets built around Webpack

Results 195 webpack-encore issues
Sort by recently updated
recently updated
newest added

Always i've wroten setter i must create delete or clear method. That should be solved via creating methods: setItems() + addItem() Its a minimum. If you pass setItems([]) - it...

Hello, I setup Encore to use `svelte-loader` as such: ```js ... .addLoader({ test: /\.svelte$/, loader: 'svelte-loader', options: { preprocess: sveltePreprocess(), emitCss: true, compilerOptions: { css: true, dev: !Encore.isProduction(), customElement: true,...

Status: Waiting Feedback

`yarn encore dev` crashes with this error: ``` Error: webpack-cli tried to access webpack (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous...

Hi, I don't know if it's an encore related issue but I can't create webp images with the image-webpack-loader. `.addLoader({ test: /\.(gif|png|jpe?g|svg)$/i, loader: 'image-webpack-loader', options: { disable: !Encore.isProduction(), webp: {...

When configuring the dev server with the following options: ``` .configureDevServerOptions(options => { options.http2 = true, options.https = { key: 'infrastructure/ssl/private/tcgcollector-dev.key', cert: 'infrastructure/ssl/certs/tcgcollector-dev.crt', } }) ``` 2 deprecation messages are...

I used to @[email protected] and then i upgrade into v1.81.1 and i got this issue ![Screen Shot 2022-03-18 at 16 16 15](https://user-images.githubusercontent.com/74392945/158974881-9b7e80c1-3123-4b98-acf4-bcb335d2dcfa.png) Live file: ![Screen Shot 2022-03-18 at 16 19...

As of now version 3 become the default version of VueJS. And it supports JSX too. ![image](https://user-images.githubusercontent.com/19922707/159109340-7eb9da5d-5653-4636-834a-309d64a8e413.png) Also want to put your attention on this warning. ![image](https://user-images.githubusercontent.com/19922707/159109455-8b5c1c2a-48d6-4da6-a8b0-20fbf6a7c5d6.png) I used vue-loader...

Hello. I can't get css module fully working in my React app. The problem is that it only works if I use the `:local(.myClassName)` notation in my .scss files Here's...

I use `symfony/framework-bundle 5.0.5` and `"symfony/webpack-encore-bundle": "dev-master"` When I develop code in dev env was everything correct, but when switched project to prod enviroment I faced with strange behaviour, my...

``` here is my wepack.config.js `const { VueLoaderPlugin } = require("vue-loader"); const htmlWebpackPlugin = require("html-webpack-plugin"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const { CleanWebpackPlugin } = require("clean-webpack-plugin"); const autoprefixer = require("autoprefixer"); const...