Skip to content

Commit

Permalink
fix(nuxt): Add unbuild config to not fail on warn
Browse files Browse the repository at this point in the history
  • Loading branch information
s1gr1d committed Dec 11, 2024
1 parent 72239ee commit 9fcd669
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/nuxt/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineBuildConfig } from 'unbuild';

// Build Config for the Nuxt Module Builder: https://github.com/nuxt/module-builder
export default defineBuildConfig({
// The devDependency "@sentry-internal/nitro-utils" triggers "Inlined implicit external", but it's not external
failOnWarn: false,
});

0 comments on commit 9fcd669

Please sign in to comment.