Questions tagged [webpack-3]

Version 3 of the Webpack bundler. Webpack takes modules with dependencies and generates static assets representing those modules.

About

Released in June 2017. Migrating from Webpack 2 to 3 should involve no effort beyond running the upgrade commands in your terminal.

New Features

  • Scope Hoisting
  • Dynamic Import Syntax

Links

GitHub

183 questions
0
votes
3 answers

Unexpected token when using dynamic import instead System.import

After rewriting all my dynamic System.import calls to import webpack compilation fails: Module build failed: SyntaxError: (...)/dashboard.js: Unexpected token (7:4) 5 | 6 | export default Promise.all([ > 7 | import('charts') | …
van_folmert
  • 4,257
  • 10
  • 44
  • 89
-1
votes
1 answer

How to add more than one CSS file using webpack project

I have 2 CSS files style.css and responsive.css , I need to add both the files in head tag , please help me....
Adarsha Beleyur
  • 157
  • 1
  • 1
  • 7
-3
votes
2 answers

why babel loader and jsx loader is not working in webpack version 3.x in react app

Package.json this is my package json file. I have already install npm install --save-dev babel-loader babel-core in my app /* Package.json*/ { "name": "tripdetail", "version": "1.0.0", "main": "index.js", "scripts": { …
Devendra
  • 19
  • 1
  • 1
  • 7
1 2 3
12
13