mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
38 lines
822 B
TypeScript
38 lines
822 B
TypeScript
import { defineNuxtConfig } from "nuxt";
|
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
css: ["~/assets/styles/fonts.css"],
|
|
|
|
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/color-mode", "@nuxt/content"],
|
|
|
|
// https://color-mode.nuxtjs.org/
|
|
colorMode: { classSuffix: "" },
|
|
|
|
// https://content.nuxtjs.org/api/configuration
|
|
content: {
|
|
documentDriven: true,
|
|
|
|
// https://content.nuxtjs.org/api/configuration/#highlighttheme
|
|
highlight: {
|
|
theme: {
|
|
default: "one-dark-pro",
|
|
dark: "github-dark",
|
|
// sepia: "monokai",
|
|
},
|
|
},
|
|
|
|
markdown: {
|
|
remarkPlugins: {},
|
|
rehypePlugins: {
|
|
"rehype-autolink-headings": false,
|
|
},
|
|
},
|
|
},
|
|
|
|
build: {
|
|
extractCSS: true,
|
|
transpile: ["@headlessui/vue"],
|
|
},
|
|
});
|