| 12345678910111213141516 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: [
- './src/**/*.html',
- './**/*.html',
- './**/*.cshtml',
- './Views/*.cshtml',
- './Views/**/*.cshtml',
- './wwwroot/**/*.js',
- './**/*.razor' // Blazor ÄÄÆ÷³ÍÆ® ÆÄÀÏ Ãß°¡
- ],
- theme: {
- extend: {},
- },
- plugins: [],
- }
|