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 8ff1af8 commit 74444faCopy full SHA for 74444fa
app-config-webpack/src/index.ts
@@ -45,11 +45,7 @@ export default class AppConfigPlugin {
45
async (resolve?: { request: string }) => {
46
if (!resolve) return;
47
48
- if (
49
- resolve.request === '@app-config/main' ||
50
- resolve.request === '@lcdev/app-config' ||
51
- resolve.request === 'app-config'
52
- ) {
+ if (regex.test(resolve.request)) {
53
const { filePaths } = await loadValidatedConfig(
54
this.loadingOptions,
55
this.schemaLoadingOptions,
0 commit comments