- Import web/ directory (Vue 3 + Vite + UnoCSS SPA) from feature/vue-spa branch - Add web/src/components/ClassicUIButton.vue: switch-back to Streamlit via cookie (prgn_ui=streamlit) + ?prgn_switch=streamlit query param bridge - Add web/src/composables/useFeatureFlag.ts: reads prgn_demo_tier cookie for demo toolbar visual consistency (not an authoritative gate, see issue #8) - Update .gitignore: add .superpowers/, pytest-output.txt, docs/superpowers/
10 lines
370 B
TypeScript
10 lines
370 B
TypeScript
import { defineConfig, presetWind, presetAttributify } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetWind(),
|
|
// prefixedOnly: avoids false-positive CSS for bare attribute names like "h2", "grid",
|
|
// "shadow" in source files. Use <div un-flex> not <div flex>. Gotcha #4.
|
|
presetAttributify({ prefix: 'un-', prefixedOnly: true }),
|
|
],
|
|
})
|