mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
deps: upgrade dependencies (#1867)
* update deps * Update package.json * update deps and workflows * refactor workflows * always checkout * Update action.yml * Update action.yml * Update action.yml * bump * Update action.yml * Update action.yml * update workflow * fix pnpm issues * upgrade eslint * complete workflows * Update eslint.config.ts * upgrade tailwind * Update .gitignore * upgrade nuxt content separately
This commit is contained in:
+12
-8
@@ -1,28 +1,26 @@
|
||||
import { resolve } from 'path'
|
||||
import tailwindcss from '@tailwindcss/vite'
|
||||
// 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,
|
||||
@@ -35,15 +33,19 @@ export default defineNuxtConfig({
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
svgo: {
|
||||
defaultImport: 'component',
|
||||
},
|
||||
|
||||
googleFonts: {
|
||||
families: {
|
||||
'Public+Sans': [300, 400, 500, 600],
|
||||
},
|
||||
},
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
resolve: {
|
||||
alias: {
|
||||
// resolve the aliases used in the vue-select build
|
||||
@@ -51,4 +53,6 @@ export default defineNuxtConfig({
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
compatibilityDate: '2025-03-16',
|
||||
})
|
||||
Reference in New Issue
Block a user