nuxt-breaky
![License](https://img.shields.io/npm/l/nuxt-breaky.svg?style=flat-square)
Show Tailwind CSS Breakpoints in Nuxtjs
Intro
DEMO
breaky helps you to develop your responsive designs faster. It reads your defined breakpoints within your Tailwind Config and shows the current active breakpoint based on your browser window width.
The plugin will only be loaded during development mode and does not influence your production build.
![Toggling between Dark and Light Mode Demo GIF of toggling dark mode](https://github.com/teamnovu/nuxt-breaky/raw/HEAD/./example/assets/img/toggle-dark-mode.gif)
Setup
- Add
nuxt-breaky
as a dev-dependency to your project
yarn add --dev nuxt-breaky
- Add
nuxt-breaky
to the buildModules
section of nuxt.config.js
Use the modules
section if you are using Nuxt older than v2.9
. More Info
{
buildModules: [
'nuxt-breaky',
[
'nuxt-breaky',
{
enabled: true,
enableInProd: false,
colorScheme: 'auto',
position: 'bottomRight'
}
]
]
}
- Add
exposeConfig: true
to the tailwindcss
section of nuxt.config.js
{
tailwindcss: {
exposeConfig: true
}
}
Usage
The breaky module automatically adds the breaky plugin when in development
mode.
No need to register or include it anywhere else.
Configuration
You can pass options to the breaky using both the module options and the Nuxt config way.
{
buildModules: {
['nuxt-breaky', { }]
},
breaky: {
}
}
Available Options
Option | Type | Default | Options | Description |
---|
enabled | Boolean | true | true | false | Enable/Disable breaky |
enableInProd | Boolean | false | true | false | Enable breaky in production (overrides the enabled option) |
colorScheme | String | auto | 'auto' | 'light' | 'dark' | Switch between different color schemes |
position | String | 'bottomRight' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | Breakys starting position |
Development
- Clone this repository
- Install dependencies using
yarn install
- Start development server using
yarn dev
Release
yarn release:patch
(minor
or major
)npm publish
License
MIT License
Copyright (c) teamnovu