We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e107866 commit 112c0ebCopy full SHA for 112c0eb
app-config-webpack/src/index.ts
@@ -1,7 +1,7 @@
1
import { join } from 'path';
2
import { Compiler } from 'webpack';
3
import HtmlWebpackPlugin from 'html-webpack-plugin';
4
-import { loadValidatedConfig, ConfigLoadingOptions, SchemaLoadingOptions } from '@app-config/main';
+import { ConfigLoadingOptions, SchemaLoadingOptions } from '@app-config/main';
5
import { regex } from './loader';
6
7
// loader is the filepath, not the export
@@ -62,7 +62,7 @@ export default class AppConfigPlugin {
62
});
63
64
// eslint-disable-next-line no-param-reassign
65
- resolve.request = join(__dirname, '..', '.config-placeholder') + `?${queryString}`;
+ resolve.request = `${join(__dirname, '..', '.config-placeholder')}?${queryString}`;
66
}
67
68
return resolve;
0 commit comments