vite-plugin-storybook-nextjs 3.0.3--canary.68.2eff9c3.0 → 3.0.3--canary.68.b6ee25e.0

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/index.cjs CHANGED
@@ -3125,22 +3125,7 @@ var isVitestEnv = process.env.VITEST === "true";
3125
3125
  function getExecutionEnvironment(config) {
3126
3126
  return isVitestEnv && config.test?.browser?.enabled !== true ? "node" : "browser";
3127
3127
  }
3128
- var getNextjsVersion = () => require3(scopedResolve("next/package.json")).version;
3129
- var scopedResolve = (id) => {
3130
- let scopedModulePath;
3131
- try {
3132
- scopedModulePath = require3.resolve(id, { paths: [resolve()] });
3133
- } catch (e) {
3134
- scopedModulePath = require3.resolve(id);
3135
- }
3136
- const idWithNativePathSep = id.replace(/\//g, sep);
3137
- if (scopedModulePath.endsWith(idWithNativePathSep)) {
3138
- return scopedModulePath;
3139
- }
3140
- const moduleFolderStrPosition = scopedModulePath.lastIndexOf(idWithNativePathSep);
3141
- const beginningOfMainScriptPath = moduleFolderStrPosition + id.length;
3142
- return scopedModulePath.substring(0, beginningOfMainScriptPath);
3143
- };
3128
+ var getNextjsVersion = () => require3("next/package.json").version;
3144
3129
  var getNextjsMajorVersion = () => {
3145
3130
  try {
3146
3131
  const version = getNextjsVersion();
package/dist/index.js CHANGED
@@ -3092,22 +3092,7 @@ var isVitestEnv = process.env.VITEST === "true";
3092
3092
  function getExecutionEnvironment(config) {
3093
3093
  return isVitestEnv && config.test?.browser?.enabled !== true ? "node" : "browser";
3094
3094
  }
3095
- var getNextjsVersion = () => require3(scopedResolve("next/package.json")).version;
3096
- var scopedResolve = (id) => {
3097
- let scopedModulePath;
3098
- try {
3099
- scopedModulePath = require3.resolve(id, { paths: [resolve()] });
3100
- } catch (e) {
3101
- scopedModulePath = require3.resolve(id);
3102
- }
3103
- const idWithNativePathSep = id.replace(/\//g, sep);
3104
- if (scopedModulePath.endsWith(idWithNativePathSep)) {
3105
- return scopedModulePath;
3106
- }
3107
- const moduleFolderStrPosition = scopedModulePath.lastIndexOf(idWithNativePathSep);
3108
- const beginningOfMainScriptPath = moduleFolderStrPosition + id.length;
3109
- return scopedModulePath.substring(0, beginningOfMainScriptPath);
3110
- };
3095
+ var getNextjsVersion = () => require3("next/package.json").version;
3111
3096
  var getNextjsMajorVersion = () => {
3112
3097
  try {
3113
3098
  const version = getNextjsVersion();
@@ -485,7 +485,7 @@ var require_semver = __commonJS({
485
485
  var require_parse = __commonJS({
486
486
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/parse.js"(exports, module) {
487
487
  var SemVer = require_semver();
488
- var parse2 = (version, options, throwErrors = false) => {
488
+ var parse = (version, options, throwErrors = false) => {
489
489
  if (version instanceof SemVer) {
490
490
  return version;
491
491
  }
@@ -498,16 +498,16 @@ var require_parse = __commonJS({
498
498
  throw er;
499
499
  }
500
500
  };
501
- module.exports = parse2;
501
+ module.exports = parse;
502
502
  }
503
503
  });
504
504
 
505
505
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js
506
506
  var require_valid = __commonJS({
507
507
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js"(exports, module) {
508
- var parse2 = require_parse();
508
+ var parse = require_parse();
509
509
  var valid = (version, options) => {
510
- const v = parse2(version, options);
510
+ const v = parse(version, options);
511
511
  return v ? v.version : null;
512
512
  };
513
513
  module.exports = valid;
@@ -517,9 +517,9 @@ var require_valid = __commonJS({
517
517
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js
518
518
  var require_clean = __commonJS({
519
519
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js"(exports, module) {
520
- var parse2 = require_parse();
520
+ var parse = require_parse();
521
521
  var clean = (version, options) => {
522
- const s = parse2(version.trim().replace(/^[=v]+/, ""), options);
522
+ const s = parse(version.trim().replace(/^[=v]+/, ""), options);
523
523
  return s ? s.version : null;
524
524
  };
525
525
  module.exports = clean;
@@ -552,10 +552,10 @@ var require_inc = __commonJS({
552
552
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/diff.js
553
553
  var require_diff = __commonJS({
554
554
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/diff.js"(exports, module) {
555
- var parse2 = require_parse();
555
+ var parse = require_parse();
556
556
  var diff = (version1, version2) => {
557
- const v1 = parse2(version1, null, true);
558
- const v2 = parse2(version2, null, true);
557
+ const v1 = parse(version1, null, true);
558
+ const v2 = parse(version2, null, true);
559
559
  const comparison = v1.compare(v2);
560
560
  if (comparison === 0) {
561
561
  return null;
@@ -622,9 +622,9 @@ var require_patch = __commonJS({
622
622
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js
623
623
  var require_prerelease = __commonJS({
624
624
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js"(exports, module) {
625
- var parse2 = require_parse();
625
+ var parse = require_parse();
626
626
  var prerelease = (version, options) => {
627
- const parsed = parse2(version, options);
627
+ const parsed = parse(version, options);
628
628
  return parsed && parsed.prerelease.length ? parsed.prerelease : null;
629
629
  };
630
630
  module.exports = prerelease;
@@ -796,7 +796,7 @@ var require_cmp = __commonJS({
796
796
  var require_coerce = __commonJS({
797
797
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/coerce.js"(exports, module) {
798
798
  var SemVer = require_semver();
799
- var parse2 = require_parse();
799
+ var parse = require_parse();
800
800
  var { safeRe: re, t } = require_re();
801
801
  var coerce = (version, options) => {
802
802
  if (version instanceof SemVer) {
@@ -831,7 +831,7 @@ var require_coerce = __commonJS({
831
831
  const patch = match[4] || "0";
832
832
  const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
833
833
  const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
834
- return parse2(`${major}.${minor}.${patch}${prerelease}${build}`, options);
834
+ return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options);
835
835
  };
836
836
  module.exports = coerce;
837
837
  }
@@ -1832,7 +1832,7 @@ var require_semver2 = __commonJS({
1832
1832
  var constants = require_constants();
1833
1833
  var SemVer = require_semver();
1834
1834
  var identifiers = require_identifiers();
1835
- var parse2 = require_parse();
1835
+ var parse = require_parse();
1836
1836
  var valid = require_valid();
1837
1837
  var clean = require_clean();
1838
1838
  var inc = require_inc();
@@ -1870,7 +1870,7 @@ var require_semver2 = __commonJS({
1870
1870
  var simplifyRange = require_simplify();
1871
1871
  var subset = require_subset();
1872
1872
  module.exports = {
1873
- parse: parse2,
1873
+ parse,
1874
1874
  valid,
1875
1875
  clean,
1876
1876
  inc,
@@ -1918,125 +1918,10 @@ var require_semver2 = __commonJS({
1918
1918
  };
1919
1919
  }
1920
1920
  });
1921
-
1922
- // node_modules/.pnpm/pathe@2.0.3/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs
1923
- var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
1924
- function normalizeWindowsPath(input = "") {
1925
- if (!input) {
1926
- return input;
1927
- }
1928
- return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
1929
- }
1930
- var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
1931
- var sep = "/";
1932
- function cwd() {
1933
- if (typeof process !== "undefined" && typeof process.cwd === "function") {
1934
- return process.cwd().replace(/\\/g, "/");
1935
- }
1936
- return "/";
1937
- }
1938
- var resolve = function(...arguments_) {
1939
- arguments_ = arguments_.map((argument) => normalizeWindowsPath(argument));
1940
- let resolvedPath = "";
1941
- let resolvedAbsolute = false;
1942
- for (let index = arguments_.length - 1; index >= -1 && !resolvedAbsolute; index--) {
1943
- const path = index >= 0 ? arguments_[index] : cwd();
1944
- if (!path || path.length === 0) {
1945
- continue;
1946
- }
1947
- resolvedPath = `${path}/${resolvedPath}`;
1948
- resolvedAbsolute = isAbsolute(path);
1949
- }
1950
- resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
1951
- if (resolvedAbsolute && !isAbsolute(resolvedPath)) {
1952
- return `/${resolvedPath}`;
1953
- }
1954
- return resolvedPath.length > 0 ? resolvedPath : ".";
1955
- };
1956
- function normalizeString(path, allowAboveRoot) {
1957
- let res = "";
1958
- let lastSegmentLength = 0;
1959
- let lastSlash = -1;
1960
- let dots = 0;
1961
- let char = null;
1962
- for (let index = 0; index <= path.length; ++index) {
1963
- if (index < path.length) {
1964
- char = path[index];
1965
- } else if (char === "/") {
1966
- break;
1967
- } else {
1968
- char = "/";
1969
- }
1970
- if (char === "/") {
1971
- if (lastSlash === index - 1 || dots === 1) ;
1972
- else if (dots === 2) {
1973
- if (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== "." || res[res.length - 2] !== ".") {
1974
- if (res.length > 2) {
1975
- const lastSlashIndex = res.lastIndexOf("/");
1976
- if (lastSlashIndex === -1) {
1977
- res = "";
1978
- lastSegmentLength = 0;
1979
- } else {
1980
- res = res.slice(0, lastSlashIndex);
1981
- lastSegmentLength = res.length - 1 - res.lastIndexOf("/");
1982
- }
1983
- lastSlash = index;
1984
- dots = 0;
1985
- continue;
1986
- } else if (res.length > 0) {
1987
- res = "";
1988
- lastSegmentLength = 0;
1989
- lastSlash = index;
1990
- dots = 0;
1991
- continue;
1992
- }
1993
- }
1994
- if (allowAboveRoot) {
1995
- res += res.length > 0 ? "/.." : "..";
1996
- lastSegmentLength = 2;
1997
- }
1998
- } else {
1999
- if (res.length > 0) {
2000
- res += `/${path.slice(lastSlash + 1, index)}`;
2001
- } else {
2002
- res = path.slice(lastSlash + 1, index);
2003
- }
2004
- lastSegmentLength = index - lastSlash - 1;
2005
- }
2006
- lastSlash = index;
2007
- dots = 0;
2008
- } else if (char === "." && dots !== -1) {
2009
- ++dots;
2010
- } else {
2011
- dots = -1;
2012
- }
2013
- }
2014
- return res;
2015
- }
2016
- var isAbsolute = function(p) {
2017
- return _IS_ABSOLUTE_RE.test(p);
2018
- };
2019
-
2020
- // src/utils.ts
2021
1921
  var require2 = module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('storybook.global.cjs', document.baseURI).href)));
2022
1922
  var VITEST_PLUGIN_NAME = "vite-plugin-storybook-nextjs";
2023
1923
  process.env.VITEST === "true";
2024
- var getNextjsVersion = () => require2(scopedResolve("next/package.json")).version;
2025
- var scopedResolve = (id) => {
2026
- let scopedModulePath;
2027
- try {
2028
- scopedModulePath = require2.resolve(id, { paths: [resolve()] });
2029
- } catch (e) {
2030
- scopedModulePath = require2.resolve(id);
2031
- }
2032
- const idWithNativePathSep = id.replace(/\//g, sep);
2033
- if (scopedModulePath.endsWith(idWithNativePathSep)) {
2034
- return scopedModulePath;
2035
- }
2036
- const moduleFolderStrPosition = scopedModulePath.lastIndexOf(idWithNativePathSep);
2037
- const beginningOfMainScriptPath = moduleFolderStrPosition + id.length;
2038
- return scopedModulePath.substring(0, beginningOfMainScriptPath);
2039
- };
1924
+ var getNextjsVersion = () => require2("next/package.json").version;
2040
1925
 
2041
1926
  // src/plugins/next-image/alias/index.tsx
2042
1927
  var require3 = module$1.createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('storybook.global.cjs', document.baseURI).href)));
@@ -478,7 +478,7 @@ var require_semver = __commonJS({
478
478
  var require_parse = __commonJS({
479
479
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/parse.js"(exports, module) {
480
480
  var SemVer = require_semver();
481
- var parse2 = (version, options, throwErrors = false) => {
481
+ var parse = (version, options, throwErrors = false) => {
482
482
  if (version instanceof SemVer) {
483
483
  return version;
484
484
  }
@@ -491,16 +491,16 @@ var require_parse = __commonJS({
491
491
  throw er;
492
492
  }
493
493
  };
494
- module.exports = parse2;
494
+ module.exports = parse;
495
495
  }
496
496
  });
497
497
 
498
498
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js
499
499
  var require_valid = __commonJS({
500
500
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/valid.js"(exports, module) {
501
- var parse2 = require_parse();
501
+ var parse = require_parse();
502
502
  var valid = (version, options) => {
503
- const v = parse2(version, options);
503
+ const v = parse(version, options);
504
504
  return v ? v.version : null;
505
505
  };
506
506
  module.exports = valid;
@@ -510,9 +510,9 @@ var require_valid = __commonJS({
510
510
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js
511
511
  var require_clean = __commonJS({
512
512
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/clean.js"(exports, module) {
513
- var parse2 = require_parse();
513
+ var parse = require_parse();
514
514
  var clean = (version, options) => {
515
- const s = parse2(version.trim().replace(/^[=v]+/, ""), options);
515
+ const s = parse(version.trim().replace(/^[=v]+/, ""), options);
516
516
  return s ? s.version : null;
517
517
  };
518
518
  module.exports = clean;
@@ -545,10 +545,10 @@ var require_inc = __commonJS({
545
545
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/diff.js
546
546
  var require_diff = __commonJS({
547
547
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/diff.js"(exports, module) {
548
- var parse2 = require_parse();
548
+ var parse = require_parse();
549
549
  var diff = (version1, version2) => {
550
- const v1 = parse2(version1, null, true);
551
- const v2 = parse2(version2, null, true);
550
+ const v1 = parse(version1, null, true);
551
+ const v2 = parse(version2, null, true);
552
552
  const comparison = v1.compare(v2);
553
553
  if (comparison === 0) {
554
554
  return null;
@@ -615,9 +615,9 @@ var require_patch = __commonJS({
615
615
  // node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js
616
616
  var require_prerelease = __commonJS({
617
617
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/prerelease.js"(exports, module) {
618
- var parse2 = require_parse();
618
+ var parse = require_parse();
619
619
  var prerelease = (version, options) => {
620
- const parsed = parse2(version, options);
620
+ const parsed = parse(version, options);
621
621
  return parsed && parsed.prerelease.length ? parsed.prerelease : null;
622
622
  };
623
623
  module.exports = prerelease;
@@ -789,7 +789,7 @@ var require_cmp = __commonJS({
789
789
  var require_coerce = __commonJS({
790
790
  "node_modules/.pnpm/semver@7.7.3/node_modules/semver/functions/coerce.js"(exports, module) {
791
791
  var SemVer = require_semver();
792
- var parse2 = require_parse();
792
+ var parse = require_parse();
793
793
  var { safeRe: re, t } = require_re();
794
794
  var coerce = (version, options) => {
795
795
  if (version instanceof SemVer) {
@@ -824,7 +824,7 @@ var require_coerce = __commonJS({
824
824
  const patch = match[4] || "0";
825
825
  const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
826
826
  const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
827
- return parse2(`${major}.${minor}.${patch}${prerelease}${build}`, options);
827
+ return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options);
828
828
  };
829
829
  module.exports = coerce;
830
830
  }
@@ -1825,7 +1825,7 @@ var require_semver2 = __commonJS({
1825
1825
  var constants = require_constants();
1826
1826
  var SemVer = require_semver();
1827
1827
  var identifiers = require_identifiers();
1828
- var parse2 = require_parse();
1828
+ var parse = require_parse();
1829
1829
  var valid = require_valid();
1830
1830
  var clean = require_clean();
1831
1831
  var inc = require_inc();
@@ -1863,7 +1863,7 @@ var require_semver2 = __commonJS({
1863
1863
  var simplifyRange = require_simplify();
1864
1864
  var subset = require_subset();
1865
1865
  module.exports = {
1866
- parse: parse2,
1866
+ parse,
1867
1867
  valid,
1868
1868
  clean,
1869
1869
  inc,
@@ -1911,125 +1911,10 @@ var require_semver2 = __commonJS({
1911
1911
  };
1912
1912
  }
1913
1913
  });
1914
-
1915
- // node_modules/.pnpm/pathe@2.0.3/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs
1916
- var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
1917
- function normalizeWindowsPath(input = "") {
1918
- if (!input) {
1919
- return input;
1920
- }
1921
- return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
1922
- }
1923
- var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
1924
- var sep = "/";
1925
- function cwd() {
1926
- if (typeof process !== "undefined" && typeof process.cwd === "function") {
1927
- return process.cwd().replace(/\\/g, "/");
1928
- }
1929
- return "/";
1930
- }
1931
- var resolve = function(...arguments_) {
1932
- arguments_ = arguments_.map((argument) => normalizeWindowsPath(argument));
1933
- let resolvedPath = "";
1934
- let resolvedAbsolute = false;
1935
- for (let index = arguments_.length - 1; index >= -1 && !resolvedAbsolute; index--) {
1936
- const path = index >= 0 ? arguments_[index] : cwd();
1937
- if (!path || path.length === 0) {
1938
- continue;
1939
- }
1940
- resolvedPath = `${path}/${resolvedPath}`;
1941
- resolvedAbsolute = isAbsolute(path);
1942
- }
1943
- resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
1944
- if (resolvedAbsolute && !isAbsolute(resolvedPath)) {
1945
- return `/${resolvedPath}`;
1946
- }
1947
- return resolvedPath.length > 0 ? resolvedPath : ".";
1948
- };
1949
- function normalizeString(path, allowAboveRoot) {
1950
- let res = "";
1951
- let lastSegmentLength = 0;
1952
- let lastSlash = -1;
1953
- let dots = 0;
1954
- let char = null;
1955
- for (let index = 0; index <= path.length; ++index) {
1956
- if (index < path.length) {
1957
- char = path[index];
1958
- } else if (char === "/") {
1959
- break;
1960
- } else {
1961
- char = "/";
1962
- }
1963
- if (char === "/") {
1964
- if (lastSlash === index - 1 || dots === 1) ;
1965
- else if (dots === 2) {
1966
- if (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== "." || res[res.length - 2] !== ".") {
1967
- if (res.length > 2) {
1968
- const lastSlashIndex = res.lastIndexOf("/");
1969
- if (lastSlashIndex === -1) {
1970
- res = "";
1971
- lastSegmentLength = 0;
1972
- } else {
1973
- res = res.slice(0, lastSlashIndex);
1974
- lastSegmentLength = res.length - 1 - res.lastIndexOf("/");
1975
- }
1976
- lastSlash = index;
1977
- dots = 0;
1978
- continue;
1979
- } else if (res.length > 0) {
1980
- res = "";
1981
- lastSegmentLength = 0;
1982
- lastSlash = index;
1983
- dots = 0;
1984
- continue;
1985
- }
1986
- }
1987
- if (allowAboveRoot) {
1988
- res += res.length > 0 ? "/.." : "..";
1989
- lastSegmentLength = 2;
1990
- }
1991
- } else {
1992
- if (res.length > 0) {
1993
- res += `/${path.slice(lastSlash + 1, index)}`;
1994
- } else {
1995
- res = path.slice(lastSlash + 1, index);
1996
- }
1997
- lastSegmentLength = index - lastSlash - 1;
1998
- }
1999
- lastSlash = index;
2000
- dots = 0;
2001
- } else if (char === "." && dots !== -1) {
2002
- ++dots;
2003
- } else {
2004
- dots = -1;
2005
- }
2006
- }
2007
- return res;
2008
- }
2009
- var isAbsolute = function(p) {
2010
- return _IS_ABSOLUTE_RE.test(p);
2011
- };
2012
-
2013
- // src/utils.ts
2014
1914
  var require2 = createRequire(import.meta.url);
2015
1915
  var VITEST_PLUGIN_NAME = "vite-plugin-storybook-nextjs";
2016
1916
  process.env.VITEST === "true";
2017
- var getNextjsVersion = () => require2(scopedResolve("next/package.json")).version;
2018
- var scopedResolve = (id) => {
2019
- let scopedModulePath;
2020
- try {
2021
- scopedModulePath = require2.resolve(id, { paths: [resolve()] });
2022
- } catch (e) {
2023
- scopedModulePath = require2.resolve(id);
2024
- }
2025
- const idWithNativePathSep = id.replace(/\//g, sep);
2026
- if (scopedModulePath.endsWith(idWithNativePathSep)) {
2027
- return scopedModulePath;
2028
- }
2029
- const moduleFolderStrPosition = scopedModulePath.lastIndexOf(idWithNativePathSep);
2030
- const beginningOfMainScriptPath = moduleFolderStrPosition + id.length;
2031
- return scopedModulePath.substring(0, beginningOfMainScriptPath);
2032
- };
1917
+ var getNextjsVersion = () => require2("next/package.json").version;
2033
1918
 
2034
1919
  // src/plugins/next-image/alias/index.tsx
2035
1920
  var require3 = createRequire(import.meta.url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-storybook-nextjs",
3
- "version": "3.0.3--canary.68.2eff9c3.0",
3
+ "version": "3.0.3--canary.68.b6ee25e.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "vite-plugin",