Skip to content

Commit 112c0eb

Browse files
committed
fix: lints
1 parent e107866 commit 112c0eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app-config-webpack/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { join } from 'path';
22
import { Compiler } from 'webpack';
33
import HtmlWebpackPlugin from 'html-webpack-plugin';
4-
import { loadValidatedConfig, ConfigLoadingOptions, SchemaLoadingOptions } from '@app-config/main';
4+
import { ConfigLoadingOptions, SchemaLoadingOptions } from '@app-config/main';
55
import { regex } from './loader';
66

77
// loader is the filepath, not the export
@@ -62,7 +62,7 @@ export default class AppConfigPlugin {
6262
});
6363

6464
// eslint-disable-next-line no-param-reassign
65-
resolve.request = join(__dirname, '..', '.config-placeholder') + `?${queryString}`;
65+
resolve.request = `${join(__dirname, '..', '.config-placeholder')}?${queryString}`;
6666
}
6767

6868
return resolve;

0 commit comments

Comments
 (0)