akemi/tailwind #1

Merged
chopper merged 4 commits from akemi/tailwind into main 2024-03-04 16:40:37 -07:00
2 changed files with 15 additions and 6 deletions
Showing only changes of commit 131d5ca58e - Show all commits

View file

@ -1,10 +1,10 @@
{
"manifest_version": 3,
"name": "Pocket Llama",
"description": "Pocket Llama is a simple extension that allows you to send your current webpage to a Llama(LLM) and make it query-able.",
"version": "0.0",
"description": "Query your current webpage with Ollama",
"version": "0.1",
"action": {
"default_popup": "base.html",
"default_icon": "logo.png"
"default_popup": "src/main.html",
"default_icon": "assets/logo.png"
}
}

9
tailwind.config.js Normal file
View file

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}