Browse Source

Loaders and rules: intro.

Frederic G. MARAND 4 years ago
parent
commit
7b31299cd5
1 changed files with 5 additions and 0 deletions
  1. 5 0
      webpack.config.js

+ 5 - 0
webpack.config.js

@@ -5,5 +5,10 @@ module.exports = {
   output: {
     filename: "bundle.js",
     path: path.join(__dirname, "build") // path must be absolute.
+  },
+  module: {
+    rules: {
+
+    }
   }
 };