Bug 32030: Unique - Prevent agreement to have the same license several times
[srvgit] / webpack.config.js
index efa980d..0c6183f 100644 (file)
@@ -16,17 +16,19 @@ module.exports = {
       {
         test: /\.vue$/,
         loader: "vue-loader",
+        exclude: [path.resolve(__dirname, "cypress/")],
       },
       {
         test: /\.ts$/,
         loader: 'ts-loader',
         options: {
           appendTsSuffixTo: [/\.vue$/]
-        }
+        },
+        exclude: [path.resolve(__dirname, "cypress/")],
       },
       {
         test: /\.css$/,
-        use: ['style-loader', 'css-loader']
+        use: ['style-loader', 'css-loader'],
       }
     ],
   },