Skip to content

Commit 9fcd669

Browse files
committed
fix(nuxt): Add unbuild config to not fail on warn
1 parent 72239ee commit 9fcd669

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/nuxt/build.config.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineBuildConfig } from 'unbuild';
2+
3+
// Build Config for the Nuxt Module Builder: https://github.com/nuxt/module-builder
4+
export default defineBuildConfig({
5+
// The devDependency "@sentry-internal/nitro-utils" triggers "Inlined implicit external", but it's not external
6+
failOnWarn: false,
7+
});

0 commit comments

Comments
 (0)