FPSMS-frontend
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
329 B

  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./app/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./pages/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./components/**/*.{js,ts,jsx,tsx,mdx}",
  7. // Or if using `src` directory:
  8. "./src/**/*.{js,ts,jsx,tsx,mdx}",
  9. ],
  10. theme: {
  11. extend: {},
  12. },
  13. plugins: [],
  14. };