Files
Bolt/app/tailwind.config.js
Kmc 1543d0711e app: refactor svelte build code to run tailwind with vite
refactors the rest of the build code to match a new skeleton project
adds an alias for ./src/lib as $lib, similar to sveltekit
2024-06-13 22:10:46 -04:00

10 lines
192 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{svelte,js,ts,jsx,tsx}'],
theme: {
extend: {}
},
darkMode: 'selector',
plugins: []
};