Skip to main content

Questions tagged [webpack]

Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it can also transform, bundle, or package just about any resource or asset. Webpack takes modules with dependencies and generates static assets representing those modules. Webpack enables extensibility and promotes best practices in web architecture and performance.

0 votes
0 answers
13 views

SVG Icons don't show after compiling / bundling with Webpack

This is my first time building a web-application, and I'm in my final steps. I'm trying to bundle the whole project with webpack, and everything seems to work, except for my SVG-Icons. I think the ...
Bromanius's user avatar
0 votes
0 answers
8 views

React project from Webpack to Vite

I'm moving my React project from Webpack to Vite, but I have some problems: File Extensions: My files end with .js, but Vite wants them to be .jsx. Node Version: My project uses Node 16.14.0, but Vite ...
logith vikram's user avatar
0 votes
0 answers
8 views

Webpack-dev-server serves a directory list instead of the app page on webpack 5

I have looked at various solutions to this but none of them works for me, feel free to ask for more details const webpack = require("webpack"); const webpackDevServer = require("webpack-...
Mayank's user avatar
  • 1
0 votes
0 answers
6 views

Use hash in remote module URL for webpack module federated components

I have a app that loads some module federated components. For example: module.exports = { plugins: [ new ModuleFederationPlugin({ name: 'app', remotes: { remoteComponent1:'...
ninja's user avatar
  • 355
0 votes
0 answers
17 views

`tsc` to produce CommonJS and ESM versions of my typescript library

I am quite new to JavaScript/Typescript in general and to JavaScript modules in particular. I know there is tons of materials about my question in the web, but after reading for two days I feel I find ...
Bene's user avatar
  • 11
0 votes
0 answers
7 views

Rendering webpack bundled is code on html

I have compiled react component into a js bundle using webpack. Importing this into other react projects works just fine. Is there any way to render this js file on a normal html file, without using ...
Chethan B N's user avatar
0 votes
0 answers
15 views

Webpack complied with 1 error when i try to npm run dev [closed]

I am doing a course on javaScript in udemy. It is first time i am using things like webpack and babel , in my final step of project setting when i try to do npm run dev . I get this error C:\Users\...
Rehm Ali Baloch's user avatar
1 vote
0 answers
24 views

Error with nativescript compilation due to gradle version change?

I have a nativescript project that is built through jenkins. Up until July 9th, the project built without any issues. On that same day, and after a commit, the build stopped working. To make sure that ...
Miguel Mesquita Alfaiate's user avatar
0 votes
1 answer
24 views

Audio key "stretchAudio" missing from cache in phaser 3

I tried adding audio in my game but when I call that audio using this.sound.add('') it encountered an error 'missing from cache' //preload scene preload () { this.load.audio('stretchAudio', './...
Newboy11's user avatar
  • 3,038
0 votes
0 answers
18 views

How to build from webpack 4 to without breaking Content-Security-Policy of not using 'unsafe-eval'?

I'm trying to build through webpack 4 & npm . i facing issue of "EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the ...
gaurav's user avatar
  • 1,319
0 votes
0 answers
9 views

Trying to use dotenv or config in react app and getting: webpack < 5 used to include polyfills error, tried creating webpack config, doesn't work

i'm getting this error below trying to use both dotenv and config. I've got a Typescript React App, just installed and need to use environment variables. I don't have webpack installed as a dependency ...
Kevin A.'s user avatar
  • 137
2 votes
0 answers
38 views

lodash-es vs lodash bundle size comparison

There's a project I'm currently working on which uses regular lodash library. For now we use 3 util functions cloneDeep, isEmpty, and get. Currently import statements are like so import util from '...
michachen's user avatar
0 votes
0 answers
18 views

How Can I Fix Missing WebP Images in Production Build with CRACO Configuration?

I'm working on a React project using Craco to manage Webpack configurations. My goal is to use WebP images for better performance, falling back to PNGs if WebP is not supported. I've already converted ...
Pierre F's user avatar
0 votes
1 answer
41 views

Webpack 5 and SVG parameters

I updated to Webpack 5 and found out that url-loader is deprecated in favor of asset modules. I can load SVG's like so: { test: /\.svg(\?.*)?$/, exclude: [path.resolve(...
Xvs's user avatar
  • 79
0 votes
0 answers
11 views

How to use relative paths in SCSS URLs which work for Angular application and karma builds

I've migrated a project to Angular 18 using @angular-devkit/build-angular:application as builder. During the migration process all relative paths in SCSS image URLs have been changed from "~/src/...
Ulrich Wengert's user avatar
0 votes
0 answers
39 views

Module not found / build failed in my yarn workspaces monorepo

I am combining my React web application with my Expo React Native mobile app into a monorepo using yarn workspaces because they both need to share some utils, queries, etc. My file structure is ...
jchm's user avatar
  • 83
0 votes
0 answers
13 views

VS Code firefox-debug unable to hit breakpoints for angular app (docker)

I am running: ubuntu 24.04 VS Code installed, with firefox-debug extension Docker compose my web app I can launch a browser hosting my web app from VS Code, but I am not able to hit any breakpoints. ...
bas's user avatar
  • 14.5k
0 votes
0 answers
31 views

(Firebase App hosting) Error: Only the Angular application builder is supported

I'm working on an Angular project where I need to use environment variables managed by dotenv. For this, I've been using the custom webpack builder provided by @angular-builders/custom-webpack:browser....
Yordan Mansarliyski's user avatar
0 votes
0 answers
18 views

VS Code/Chrome Debugger Causes Breakpoint in Angular Application Generated Webpack File

I have an angular application that I work with using VS Code and Chrome running with the debugger port set to 9222. However, the debugger likes to throw its own breakpoints into the webpack-generated ...
Jason's user avatar
  • 4,079
0 votes
0 answers
10 views

How to fix chaining loader issue

This is the error I am facing - common_app.chunk.js:158268 ./node_modules/@netless/synced-store/node_modules/value-enhancer/dist/index.js 27:29 Module parse failed: Unexpected token (27:29) You may ...
Anshu Bansal's user avatar
0 votes
1 answer
22 views

Error running webpack after adding typescript to existing JS project

I'm having difficulty incorporating Typescript to my JS project which uses webpack. Here is my webpack.config.js: const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin"); const ...
user6118986's user avatar
0 votes
0 answers
17 views

using CSS-Loader, Style-Loader with ngtools is generating TypeError: at ShadowCss.shimCssText (compiler.mjs)

`I am creating Angular V-18 project without CLI and but i cannot find the solution for this one my package.json my tsconfig.json webpack.config.mjs const __filename = fileURLToPath(import.meta.url); ...
KS7's user avatar
  • 1
0 votes
0 answers
20 views

Deployment crashes when building with new image

I have an react, typescript and webpack application deployed using cloudflare pages. On the last modification I tried adding a new image on my page but the deployment fails to find that particular ...
William Blanchet Lafrenière's user avatar
0 votes
0 answers
40 views

Appropriate loader to handle this file type .mjs | webpack

I recently added @radix-ui/react-navigation-menu to my project. However, upon attempting to rebuild, I encountered the following error message: the error.. Interestingly, other components from the ...
AronikTV's user avatar
1 vote
0 answers
20 views

Webpack Duplicate Image File Issue and 404 Error with React App

I am working on a React project with Webpack to bundle my assets. My issue is that Webpack is creating duplicate image files in the dist/images directory, and my application is also encountering a 404 ...
Mag's user avatar
  • 11
0 votes
1 answer
26 views

Avoid url resolution in scss files in Angular

I did a css -> scss migration on an existing Angular project using schematics-scss-migrate. Everything works fine except the URL's, if any, in scss files. So I found out that in scss files the URL'...
Urooj's user avatar
  • 334
0 votes
0 answers
17 views

Webpack dynamic import in node.js app doesn't work: MODULE_NOT_FOUND

I am trying to import a js file at runtime: const migrationsDir = path.resolve(__dirname, '../migrations/tenanted'); import(path.join(migrationsDir, '1681831306977-initial-schema.js')) .then(() =>...
Vololodymyr's user avatar
  • 2,178
0 votes
0 answers
14 views

Can't run TypeOrm migrations with webpack: MODULE_NOT_FOUND

I have node.js app built with webpack. I am following this FAQ My webpack config has one entrypoint for the migrator script, and multiple entrypoints for migration files: const commonConfig = require('...
Vololodymyr's user avatar
  • 2,178
1 vote
1 answer
46 views
+50

Problem when requiring packages bundled with webpack

I'm able to use libraries with node like: const API = require("api"); const Service = require("service"); however, when I bundle the js file with webpack, it doesn't work and I ...
user17952421's user avatar
0 votes
0 answers
22 views

Build failed in Storybook webpack config caused by svg

this error occurs when launching storybook, all svg that i use in the application cause an error in ./src/shared/assets/icons/about-20-20.svg ...etc Module build failed (from ./node_modules/@svgr/...
frik's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
1427