diff options
Diffstat (limited to 'nuxt.config.js')
-rw-r--r-- | nuxt.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 4c7f57c..534ad80 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -31,7 +31,7 @@ export default { // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules buildModules: [ - // https://go.nuxtjs.dev/tailwindcss + "@nuxtjs/color-mode", "@nuxtjs/tailwindcss", "@nuxtjs/style-resources", ], @@ -47,4 +47,8 @@ export default { publicRuntimeConfig: { api: process.env.BACKEND_URL, }, + + colorMode: { + fallback: "light", + }, }; |