RhythmCal MVP: Energy-Aware AI Scheduler Chrome extension

This commit is contained in:
Bun Bun
2026-06-15 18:31:50 +00:00
commit aecb5face5
26 changed files with 2635 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import { crx } from '@crxjs/vite-plugin'
import manifest from './src/manifest.json' with { type: 'json' }
export default defineConfig({
build: {
outDir: 'dist',
},
plugins: [crx({ manifest })],
})