charger-display-svelte/postcss.config.js

8 lines
187 B
JavaScript
Raw Permalink Normal View History

2024-05-29 19:33:49 +02:00
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';
import nesting from 'postcss-nesting';
export default {
plugins: [tailwindcss, autoprefixer, nesting]
};