No longer silence sass warnings

This commit is contained in:
Alejandro Celaya 2025-06-17 09:05:12 +02:00
parent 058b38528f
commit 6fe52143a8
3 changed files with 3 additions and 15 deletions

View File

@ -45,10 +45,6 @@ updates:
patterns:
- 'tailwindcss'
- '@tailwindcss/*'
ignore:
# Bootstrap can introduce visual breaking changes on styles
# Ignore it, since the plan is to remove it anyway
- dependency-name: 'bootstrap'
- package-ecosystem: docker
directory: '/'
schedule:

View File

@ -1,10 +1,11 @@
import { Checkbox,
import {
Checkbox,
Details,
Label,
LabelledInput,
LabelledRevealablePasswordInput,
SimpleCard,
useToggle ,
useToggle,
} from '@shlinkio/shlink-frontend-kit';
import type { FC, PropsWithChildren, ReactNode } from 'react';
import { useState } from 'react';

View File

@ -26,15 +26,6 @@ export default defineConfig({
outDir: 'build',
},
css: {
preprocessorOptions: {
scss: {
// Silence annoying sass deprecation warnings until we get rid of bootstrap
silenceDeprecations: ['mixed-decls', 'abs-percent', 'color-functions', 'global-builtin', 'import'],
},
},
},
server: {
port: 3000,
watch: {