dlzn-ui 1.32.0 → 1.34.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.
@@ -26,8 +26,7 @@ var vite_config_default = (_env, options) => {
26
26
  const { command, mode } = _env;
27
27
  const { root } = options;
28
28
  const resolvePath = (p) => resolve(root, p);
29
- const envDir = resolvePath("build/env");
30
- const { VITE_API_PROXY_PORT_ARRAY, VITE_APP_ID, VITE_APP_NAME = "", VITE_BASE_URL = "/", VITE_FORCE_PWD_CHANGE = true, VITE_PROXY_TARGET: viteProxyTarget, VITE_USE_LOGIN_CAPTCHA = true } = parseLoadedEnv(loadEnv(mode, envDir));
29
+ const { VITE_API_PROXY_PORT_ARRAY, VITE_APP_ID, VITE_APP_NAME = "", VITE_BASE_URL = "/", VITE_FORCE_PWD_CHANGE = true, VITE_PROXY_TARGET: viteProxyTarget, VITE_USE_LOGIN_CAPTCHA = true } = parseLoadedEnv(loadEnv(mode, "build/env"));
31
30
  const VITE_PROXY_TARGET = Array.isArray(viteProxyTarget) ? viteProxyTarget : [viteProxyTarget];
32
31
  console.log({
33
32
  command,
@@ -107,11 +106,11 @@ var vite_config_default = (_env, options) => {
107
106
  mode: isProduction ? "prod" : "dev",
108
107
  title: VITE_APP_NAME
109
108
  },
110
- ejsOptions: { views: [resolvePath("node_modules/dlzn-ui/build/ejs")] }
109
+ ejsOptions: { views: ["node_modules/dlzn-ui/build/ejs"] }
111
110
  },
112
111
  minify: true,
113
112
  template: "node_modules/dlzn-ui/build/index.html"
114
- }), tailwindAutoReference(resolvePath("node_modules/dlzn-ui/assets/css/tailwindcss-entry.css"))],
113
+ }), tailwindAutoReference("node_modules/dlzn-ui/assets/css/tailwindcss-entry.css")],
115
114
  resolve: {
116
115
  alias: [
117
116
  {
@@ -133,7 +132,6 @@ var vite_config_default = (_env, options) => {
133
132
  ".js"
134
133
  ]
135
134
  },
136
- root,
137
135
  server: {
138
136
  host: "0.0.0.0",
139
137
  open: false,
package/package.json CHANGED
@@ -78,6 +78,6 @@
78
78
  "**/*.css"
79
79
  ],
80
80
  "type": "module",
81
- "version": "1.32.0",
81
+ "version": "1.34.0",
82
82
  "scripts": {}
83
83
  }