2
0
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:
Jeff Sagal
2025-03-16 10:13:20 -07:00
committed by GitHub
parent faf8d6c655
commit 06d9a373f2
22 changed files with 3824 additions and 3545 deletions
+12 -8
View File
@@ -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',
})