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 37912fc commit cd3e2f7Copy full SHA for cd3e2f7
packages/angular_devkit/build_angular/src/utils/i18n-options.ts
@@ -166,7 +166,7 @@ export async function configureI18nBuild<T extends BrowserBuilderSchema | Server
166
const usedFormats = new Set<string>();
167
for (const [locale, desc] of Object.entries(i18n.locales)) {
168
if (i18n.inlineLocales.has(locale) && desc.file) {
169
- const result = loader(path.join(projectRoot, desc.file));
+ const result = loader(path.join(context.workspaceRoot, desc.file));
170
171
for (const diagnostics of result.diagnostics.messages) {
172
if (diagnostics.type === 'error') {
0 commit comments