@profitliga/primepl
v1.3.76
Published
<!-- Get your module up and running quickly.
Downloads
19
Readme
@profitliga/primepl
Quick Setup
Install the module to your Nuxt application with one command:
npx nuxi module add @profitliga/primepl
That's it! You can now use @profitliga/primepl
in your Nuxt app ✨
Конфигурация модуля
Можно дополнить конфигурацию Tailwind
прописав объект конфигурации в объект tailwindcssConfig
primepl: {
tailwindcssConfig: {
content: [
'./models/**/*.ts',
],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('daisyui'),
],
daisyui: {
themes: [
'light',
'dark',
],
darkTheme: 'dark', // name of one of the included themes for dark mode
},
container: {
center: true,
},
},
},