Many-in-one AI client.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pridepack.config.js 253 B

123456789101112131415
  1. const { wasmLoader } = require('esbuild-plugin-wasm');
  2. module.exports = {
  3. target: 'esnext',
  4. plugins: ({ isCJS }) => {
  5. if (isCJS) {
  6. return [
  7. wasmLoader({
  8. mode: 'deferred',
  9. }),
  10. ];
  11. }
  12. return [];
  13. },
  14. }