Skip to content

Commit

Permalink
fix: detect next if typescript config file is used
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh authored Oct 22, 2024
1 parent 6ecd378 commit 337ced7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/build-info/src/frameworks/next.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class Next extends BaseFramework implements Framework {
category = Category.SSG
npmDependencies = ['next']
excludedNpmDependencies = ['@nrwl/next']
configFiles = ['next.config.js', 'next.config.mjs']
configFiles = ['next.config.js', 'next.config.mjs', 'next.config.ts']

dev = {
command: 'next',
Expand Down

0 comments on commit 337ced7

Please sign in to comment.