- Removed unused components (`components.vue`, `Markup.vue`, `index.vue`, etc.) and related styles. - Deleted obsolete utilities (`api.ts`, `componentCatalog.ts`). - Cleared out dependencies in `package-lock.json` related to unused functionalities.
23 lines
495 B
JavaScript
23 lines
495 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
portfolio: {
|
|
accent: 'var(--portfolio-accent)',
|
|
accentAlt: 'var(--portfolio-accent-alt)',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
heading: 'var(--font-family-heading)',
|
|
body: 'var(--font-family-base)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|