mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-17 07:46:53 -04:00
refactors the rest of the build code to match a new skeleton project adds an alias for ./src/lib as $lib, similar to sveltekit
10 lines
192 B
JavaScript
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: []
|
|
};
|