@shijiu/jsview-vue 1.9.644 → 1.9.648

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/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "./dom/*.js",
8
8
  "./loader/*.js"
9
9
  ],
10
- "version": "1.9.644",
10
+ "version": "1.9.648",
11
11
  "bin": {
12
12
  "jsview-post-build": "./scripts/jsview-post-build.js",
13
13
  "jsview-post-install": "./scripts/jsview-post-install.js",
@@ -62601,7 +62601,8 @@ async function resolveConfig(inlineConfig, command, defaultMode = 'development')
62601
62601
 
62602
62602
  // JsView Added >>>
62603
62603
  const jsviewViteConfigPath = path.resolve(__dirname, '..', 'jsview.vite.config.js');
62604
- const jsviewViteConfig = (await import(jsviewViteConfigPath));
62604
+ const jsviewViteConfigURL = pathToFileURL(jsviewViteConfigPath);
62605
+ const jsviewViteConfig = (await import(jsviewViteConfigURL));
62605
62606
  if (jsviewViteConfig) {
62606
62607
  config = mergeConfig(jsviewViteConfig.default, config);
62607
62608
  }
@@ -40,7 +40,7 @@ export default defineConfig({
40
40
  },
41
41
  server: {
42
42
  host: true,
43
- open: true,
43
+ // open: true,
44
44
  watch: {
45
45
  ignored: [
46
46
  '!**/node_modules/@shijiu/jsview-vue/**',