@epilot360/webpack-config-epilot360 2.1.2 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -81,7 +81,7 @@ function webpackConfigEpilot360ReactApp(opts) {
81
81
  },
82
82
  },
83
83
  {
84
- loader: 'esbuild-loader',
84
+ loader: require.resolve('esbuild-loader', { paths: [__dirname] }),
85
85
  options: {
86
86
  loader: 'css',
87
87
  minify: true
@@ -108,7 +108,7 @@ function webpackConfigEpilot360ReactApp(opts) {
108
108
  },
109
109
  {
110
110
  test: /\.svg$/i,
111
- loader: 'file-loader',
111
+ loader: require.resolve('file-loader', { paths: [__dirname] }),
112
112
  },
113
113
  ],
114
114
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot360/webpack-config-epilot360",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "A webpack config for in-browser modules used with single-spa for Epilot360",
5
5
  "main": "lib/webpack-config-epilot360-portal.js",
6
6
  "directories": {