Many-in-one AI client.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }