* Update build.yml to allow pushes to any branch Remove branch restriction for push events, which prevents forked projects from running CI checks prior to creating a PR. * eslint, prettier config only
14 lines
213 B
JavaScript
14 lines
213 B
JavaScript
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
darkMode: 'class',
|
|
plugins: [],
|
|
theme: {
|
|
extend: {
|
|
colors: {},
|
|
},
|
|
},
|
|
}
|