Nuxt UI Pro 编译记录

今天在编译 Nuxt UI Pro 时遇到了许可证验证问题。虽然不建议破解此类软件,但在学习和调试过程中,有时不得不采取这种方式以解决紧急需求。以下是完整的编译记录及相关说明。

Nuxt UI Pro 作为一个优秀的 UI 组件库,为 Nuxt 提供了更丰富的 UI 组件和更强大的功能。由于其为付费产品,在生产环境下必须提供有效的许可证。出于学习目的,进行了以下尝试:

  • 修改 validateLicense 函数,强制其返回 true
  • 屏蔽了网络请求部分,以避免验证失败

环境信息

  • node.js = v22.14.0
  • npm = v10.9.2
  • Nuxt UI Pro

修改 validateLicense 方法(绕过验证)

找到 node_modules\@nuxt\ui-pro\dist\module.cjs 添加注释

nuxt.hook("build:before", async () => {
  // await _package.validateLicense({ key, theme, dir: nuxt.options.rootDir });
});

找到 node_modules\@nuxt\ui-pro\dist\shared\ui-pro.BVl-N_q5.cjsnode_modules\@nuxt\ui-pro\dist\shared\ui-pro.CqnQuCPp.mjs 文件注释掉 validateLicense 里面所有内容,然后添加如下内容。

async function validateLicense(opts) {
//   if (!opts.key) {
//     throw _createError(`Missing \`${opts.theme.env}\` license key.
// Purchase Nuxt UI Pro at \`${opts.theme.link}\` to build your app in production.`);
//   }
//   const gitInfo = opts.key !== "oss" ? void 0 : await _getLocalGitInfo(opts.dir) || _getGitEnv();
//   const projectName = gitInfo ? `${gitInfo.owner || ""}/${gitInfo.name || ""}` : await _getPkgName(opts.dir);
//   try {
//     await ofetch.ofetch("https://api.nuxtlabs.com/ui-pro/verify", {
//       headers: {
//         "Authorization": `key ${opts.key}`,
//         "x-nuxt-project": projectName
//       },
//       params: gitInfo ? {
//         gitRepo: gitInfo.name,
//         gitOrg: gitInfo.owner,
//         gitUrl: gitInfo.url
//       } : {}
//     });
//   } catch (error) {
//     const statusType = Math.round(error.status / 100);
//     if (statusType === 4) {
//       throw _createError(`Invalid \`${opts.theme.env}\` license key.
// Purchase Nuxt UI Pro at \`${opts.theme.link}\` to build your app in production.`);
//     }
//     throw _createError("Cannot validate Nuxt UI Pro License: " + error);
//   }
  const response = {
    status: 200,
  };
  return response;
}

完成后即可编译。

破解软件只适用于个人学习和研究,严禁将其用于商业项目。Nuxt UI Pro 团队投入了大量时间与精力来维护和优化该产品,支持正版能够帮助其持续发展并为社区带来更多优质资源。若有经济条件,强烈建议通过正规渠道购买许可证。