mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
26 lines
636 B
JavaScript
26 lines
636 B
JavaScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
// Only parse example templates.
|
|
'./src/content/examples/**/*.{html,ts}',
|
|
],
|
|
// Scope utility classes to example previews.
|
|
important: '.docs-example-viewer-preview',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
// Disable Tailwind base styles.
|
|
preflight: false,
|
|
},
|
|
darkMode: ['selector', '.docs-dark-mode'],
|
|
};
|