| 123456789101112131415161718 |
- module.exports = {
- content: [
- './index.html',
- './src/**/*.{vue,js,ts,jsx,tsx}',
- '../../packages/shared-components/src/**/*.{vue,js,ts,jsx,tsx}'
- ],
- theme: {
- extend: {
- colors: {
- primary: '#1e3a5f',
- accent: '#f5a623'
- }
- }
- },
- corePlugins: {
- preflight: false
- }
- };
|