Many-in-one AI client.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
253 B

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