ninox023
How config the HighChart with nuxt ui-Theme?
@kapa.ai I dont get any logs. Maybe I need to modify my nuxt.config.ts?
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
extends: ['@nuxt/ui-pro'],
modules: [
'@nuxt/eslint',
'@nuxt/fonts',
'@nuxt/ui',
'@vueuse/nuxt',
'@nuxtjs/supabase',
'nuxt-highcharts',
],
supabase: {
redirect: false
},
devtools: {
enabled: true
},
colorMode: {
disableTransition: true
},
ui: {
safelistColors: ['primary', 'red', 'orange', 'green']
},
routeRules: {
// Temporary workaround for prerender regression. see https://github.com/nuxt/nuxt/issues/27490
'/': { prerender: true }
},
future: {
compatibilityVersion: 4
},
compatibilityDate: '2024-07-11',
typescript: {
strict: false
},
eslint: {
config: {
stylistic: {
commaDangle: 'never',
braceStyle: '1tbs'
}
}
}
})
22 replies
How config the HighChart with nuxt ui-Theme?
@kapa.ai Unfortunately, it doesn't work. I have now reduced it to the bare minimum. I just want the background to be adjusted according to the theme. Can you create a highcharts.client.js file for me?
22 replies