mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:43:35 +00:00
- Replace .eslintrc.js with .eslintrc.cjs for better ES module compatibility - Add .prettierrc configuration for consistent code formatting - Update package.json with new lint and format scripts - Add nodemon.json for development hot reloading configuration - Standardize code formatting across all JavaScript and Vue files - Update web admin SPA with improved linting rules and formatting - Add prettier configuration to web admin SPA 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
974 B
JavaScript
36 lines
974 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
gradient: 'gradient 8s ease infinite',
|
|
float: 'float 6s ease-in-out infinite',
|
|
'float-delayed': 'float 6s ease-in-out infinite 2s',
|
|
'pulse-glow': 'pulse-glow 2s ease-in-out infinite'
|
|
},
|
|
keyframes: {
|
|
gradient: {
|
|
'0%, 100%': {
|
|
'background-size': '200% 200%',
|
|
'background-position': 'left center'
|
|
},
|
|
'50%': {
|
|
'background-size': '200% 200%',
|
|
'background-position': 'right center'
|
|
}
|
|
},
|
|
float: {
|
|
'0%, 100%': { transform: 'translateY(0px)' },
|
|
'50%': { transform: 'translateY(-10px)' }
|
|
},
|
|
'pulse-glow': {
|
|
'0%, 100%': { opacity: 1 },
|
|
'50%': { opacity: 0.8 }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|