mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
add daisyui
This commit is contained in:
parent
71ed6f6dad
commit
da1dc56854
3 changed files with 12 additions and 0 deletions
|
@ -6,6 +6,7 @@ export default defineNuxtConfig({
|
||||||
buildAssetsDir: '/assets/',
|
buildAssetsDir: '/assets/',
|
||||||
},
|
},
|
||||||
modules: [
|
modules: [
|
||||||
|
'@nuxtjs/color-mode',
|
||||||
'@nuxtjs/i18n',
|
'@nuxtjs/i18n',
|
||||||
'@nuxtjs/tailwindcss',
|
'@nuxtjs/tailwindcss',
|
||||||
'nuxt-icon',
|
'nuxt-icon',
|
||||||
|
@ -36,4 +37,9 @@ export default defineNuxtConfig({
|
||||||
defaultLocale: 'en-US',
|
defaultLocale: 'en-US',
|
||||||
strategy: 'no_prefix',
|
strategy: 'no_prefix',
|
||||||
},
|
},
|
||||||
|
colorMode: {
|
||||||
|
preference: 'system',
|
||||||
|
dataValue: 'theme',
|
||||||
|
classSuffix: '',
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -13,12 +13,14 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/devtools": "latest",
|
"@nuxt/devtools": "latest",
|
||||||
|
"@nuxtjs/color-mode": "^3.3.0",
|
||||||
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
||||||
"@nuxtjs/google-fonts": "^3.0.1",
|
"@nuxtjs/google-fonts": "^3.0.1",
|
||||||
"@nuxtjs/i18n": "^8.0.0-beta.13",
|
"@nuxtjs/i18n": "^8.0.0-beta.13",
|
||||||
"@nuxtjs/tailwindcss": "^5.3.5",
|
"@nuxtjs/tailwindcss": "^5.3.5",
|
||||||
"@types/node": "^18.16.19",
|
"@types/node": "^18.16.19",
|
||||||
"@typescript-eslint/parser": "^6.1.0",
|
"@typescript-eslint/parser": "^6.1.0",
|
||||||
|
"daisyui": "^3.3.1",
|
||||||
"eslint": "^8.45.0",
|
"eslint": "^8.45.0",
|
||||||
"eslint-config-prettier": "^8.8.0",
|
"eslint-config-prettier": "^8.8.0",
|
||||||
"eslint-plugin-prettier": "^5.0.0",
|
"eslint-plugin-prettier": "^5.0.0",
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// Safelisting some classes to avoid content purge
|
// Safelisting some classes to avoid content purge
|
||||||
|
plugins: [require('daisyui')],
|
||||||
safelist: [
|
safelist: [
|
||||||
'safelisted',
|
'safelisted',
|
||||||
{
|
{
|
||||||
pattern: /bg-.*-500/,
|
pattern: /bg-.*-500/,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
daisyui: {
|
||||||
|
themes: true,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue