mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import { resolve } from 'path'
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
css: ['~/assets/styles/main.css'],
|
|
modules: [
|
|
'@nuxtjs/color-mode',
|
|
'@nuxt/content',
|
|
'@nuxtjs/google-fonts',
|
|
'nuxt-svgo',
|
|
],
|
|
// https://color-mode.nuxtjs.org/
|
|
colorMode: { classSuffix: '' },
|
|
postcss: {
|
|
plugins: {
|
|
'tailwindcss/nesting': {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
app: {
|
|
head: {
|
|
title: 'Vue Select',
|
|
meta: [{ name: 'description', content: 'My amazing site.' }],
|
|
},
|
|
},
|
|
// 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",
|
|
},
|
|
},
|
|
},
|
|
svgo: {
|
|
defaultImport: 'component',
|
|
},
|
|
googleFonts: {
|
|
families: {
|
|
'Public+Sans': [300, 400, 500, 600],
|
|
},
|
|
},
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
// resolve the aliases used in the vue-select build
|
|
'@': resolve(__dirname, '../src'),
|
|
},
|
|
},
|
|
},
|
|
})
|