nuxt-typed-router 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/module.mjs +8 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1690,6 +1690,14 @@ const module = defineNuxtModule({
|
|
|
1690
1690
|
});
|
|
1691
1691
|
}
|
|
1692
1692
|
});
|
|
1693
|
+
nuxt.hook("build:done", () => {
|
|
1694
|
+
if (moduleOptions.experimentalRemoveNuxtDefs) {
|
|
1695
|
+
removeNuxtDefinitions({
|
|
1696
|
+
autoImport: nuxt.options.imports.autoImport ?? true,
|
|
1697
|
+
buildDir: nuxt.options.buildDir
|
|
1698
|
+
});
|
|
1699
|
+
}
|
|
1700
|
+
});
|
|
1693
1701
|
if (nuxt.options.dev) {
|
|
1694
1702
|
nuxt.hook("devtools:customTabs", (tabs) => {
|
|
1695
1703
|
tabs.push({
|