mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
init
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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"],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user