nuxt-auther 1.2.4 → 1.2.5
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 +7 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { existsSync } from 'fs';
|
|
|
7
7
|
import { hash } from 'ohash';
|
|
8
8
|
|
|
9
9
|
const name = "nuxt-auther";
|
|
10
|
-
const version = "1.2.
|
|
10
|
+
const version = "1.2.5";
|
|
11
11
|
|
|
12
12
|
const OAUTH2DEFAULTS = {
|
|
13
13
|
accessType: void 0,
|
|
@@ -956,6 +956,12 @@ const module = defineNuxtModule({
|
|
|
956
956
|
const resolver = createResolver(import.meta.url);
|
|
957
957
|
const runtime = resolver.resolve("runtime");
|
|
958
958
|
const options = defu(nuxt.options.runtimeConfig[CONFIG_KEY], moduleOptions, moduleDefaults);
|
|
959
|
+
nuxt.options.runtimeConfig[CONFIG_KEY] = defu(
|
|
960
|
+
nuxt.options.runtimeConfig[CONFIG_KEY],
|
|
961
|
+
{
|
|
962
|
+
stores: options.stores
|
|
963
|
+
}
|
|
964
|
+
);
|
|
959
965
|
const { strategies, strategyScheme } = await resolveStrategies(nuxt, options);
|
|
960
966
|
delete options.strategies;
|
|
961
967
|
const uniqueImports = /* @__PURE__ */ new Set();
|