webpack-encore
webpack-encore copied to clipboard
A simple but powerful API for processing & compiling assets built around Webpack
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,...
`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  Live file:  Also want to put your attention on this warning.  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...