Skip to content

Commit 1f5c488

Browse files
committed
fix: prevent getting stuck during installation
1 parent 815690f commit 1f5c488

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

examples/nuxt/nuxt.config.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// https://nuxt.com/docs/api/configuration/nuxt-config
22
export default defineNuxtConfig({
33
devtools: { enabled: true },
4-
modules: [
5-
['~/../../../src/nuxt', {
6-
enabled: true,
7-
target: 'test-nuxt.abc.com',
8-
}],
9-
],
4+
// uncomment to enable the plugin
5+
// modules: [
6+
// ['~/../../../src/nuxt', {
7+
// enabled: true,
8+
// target: 'test-nuxt.abc.com',
9+
// }],
10+
// ],
1011
})

0 commit comments

Comments
 (0)