
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
nuxt-buefy
Advanced tools
It's really very simple to start with nuxt. But we can make it even simpler by adding nuxt-buefy.
If you create new project from scratch, just choose buefy right from create-nuxt-app!
For already existing project just:
npm i nuxt-buefy
# or
yarn add nuxt-buefy
Add buefy/types
to tsconfig.json
:
{
"compilerOptions": {
"types": [
"buefy/types"
]
}
}
{
modules: [
// Simple usage
'nuxt-buefy',
['nuxt-buefy', { /* buefy options */ }]
]
}
or
{
modules: [
// Simple usage
'nuxt-buefy',
],
buefy: { /* buefy options */ }
}
Name | Description | Type | Values | Default |
---|---|---|---|---|
css | Add buefy css | Boolean | true or false | true |
materialDesignIcons | Add material design icons | Boolean | true or false | true |
materialDesignIconsHRef | Specify material design icons version | String | Any CDN URL to MDI | https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css |
You can use buefy construct options.
If you're familiar with Sass and want to customize Buefy with your own theme, follow these steps:
sass
and sass-loader
npm i sass sass-loader@10 --save-dev
# or
yarn add --dev sass sass-loader@10
{
modules: [
['nuxt-buefy', { css: false }]
]
}
.scss
file:// Import bulma styles
@import "~bulma";
// Import buefy styles
@import "~buefy/src/scss/buefy";
css
property in nuxt.config
:{
css: ['@/assets/scss/main.scss']
}
yarn install
or npm install
yarn run dev
or npm run dev
Copyright (c) Rafael Beraldo
FAQs
Nuxt buefy
The npm package nuxt-buefy receives a total of 4,672 weekly downloads. As such, nuxt-buefy popularity was classified as popular.
We found that nuxt-buefy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.