Files
lucemon/frontend/tailwind.config.cjs
Jonathan Atta 17beab746e feat: add Wails runtime library and initial application setup
- Created package.json for Wails JavaScript runtime library.
- Added TypeScript definitions for runtime functions.
- Implemented runtime.js with event handling and logging functions.
- Initialized Go module with dependencies for Wails and other libraries.
- Added main.go for application entry point and asset embedding.
- Configured wails.json for application settings and build commands.
2026-03-11 17:06:52 +01:00

12 lines
171 B
JavaScript

module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
neon: '#39ff14'
}
}
},
plugins: []
}