Skip to content

Commit

Permalink
nit #11567
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Oct 23, 2024
1 parent 5d3ddf0 commit 3b72327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arches/install/arches-templates/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function generateConfig(): Promise<UserConfigExport> {
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
];

const rawData = fs.readFileSync(path.join(__dirname, '.frontend-configuration-settings.json'), 'utf-8');
const rawData = fs.readFileSync(path.join(__dirname, 'frontend-configuration', 'webpack-metadata.json'), 'utf-8');
const parsedData = JSON.parse(rawData);

const alias: { [key: string]: string } = {
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function generateConfig(): Promise<UserConfigExport> {
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
];

const rawData = fs.readFileSync(path.join(__dirname, '.frontend-configuration-settings.json'), 'utf-8');
const rawData = fs.readFileSync(path.join(__dirname, 'frontend-configuration', 'webpack-metadata.json'), 'utf-8');
const parsedData = JSON.parse(rawData);

const alias: { [key: string]: string } = {
Expand Down

0 comments on commit 3b72327

Please sign in to comment.