Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.3 latest version is not working #265

Closed
p3x-robot opened this issue Oct 28, 2020 · 6 comments · Fixed by #266
Closed

v3.3 latest version is not working #265

p3x-robot opened this issue Oct 28, 2020 · 6 comments · Fixed by #266

Comments

@p3x-robot
Copy link

image

it looks like bootstrap css is missing:
https://cdn.jsdelivr.net/bootstrap/3.4.1/css/bootstrap.min.css

image

@VirtueMe
Copy link

Changing the url to https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css fixed the issue for me.

@p3x-robot
Copy link
Author

Changing the url to https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css fixed the issue for me.

how do you change the url?

@VirtueMe
Copy link

I changed it manually in node_modules/bull-arena/src/server/views/layout.hbs line 12 until there is a new release.

@VirtueMe
Copy link

A better solution until this is fixed is to use useCDN: false.

import Arena from 'bull-arena';

const arenaConfig = Arena({
  queues: [
    {
      // Name of the bull queue, this name must match up exactly with what you've defined in bull.
      name: "Notification_Emailer",

      // Hostname or queue prefix, you can put whatever you want.
      hostId: "MyAwesomeQueues",

      // Redis auth.
      redis: {
        port: /* Your redis port */,
        host: /* Your redis host domain*/,
        password: /* Your redis password */,
      },
    },
  ],
},
{
  // Set false to use the bundled js and css files (default: true)
  useCdn: false
});

// Make arena's resources (js/css deps) available at the base app route
app.use('/', arenaConfig);

@p3x-robot
Copy link
Author

th

A better solution until this is fixed is to use useCDN: false.

import Arena from 'bull-arena';

const arenaConfig = Arena({
  queues: [
    {
      // Name of the bull queue, this name must match up exactly with what you've defined in bull.
      name: "Notification_Emailer",

      // Hostname or queue prefix, you can put whatever you want.
      hostId: "MyAwesomeQueues",

      // Redis auth.
      redis: {
        port: /* Your redis port */,
        host: /* Your redis host domain*/,
        password: /* Your redis password */,
      },
    },
  ],
},
{
  // Set false to use the bundled js and css files (default: true)
  useCdn: false
});

// Make arena's resources (js/css deps) available at the base app route
app.use('/', arenaConfig);

thank! i dont like use cdn for this app anyway, so thank!

@beequeueci
Copy link
Collaborator

🎉 This issue has been resolved in version 3.3.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants