nuxt-flyweb
v0.1.0
Published
FlyWeb integration for Nuxt — auto-generate /.well-known/flyweb.json for AI agent discovery.
Maintainers
Readme
nuxt-flyweb
FlyWeb integration for Nuxt — auto-generate /.well-known/flyweb.json so AI agents can discover your structured content.
Install
npm install nuxt-flywebUsage
// nuxt.config.ts
import flyweb from 'nuxt-flyweb';
export default defineNuxtConfig({
modules: [
[flyweb, {
entity: 'My Blog',
type: 'blog',
attribution: { required: true, license: 'CC-BY-4.0', must_link: true },
resources: {
posts: {
path: '/.flyweb/posts',
format: 'jsonl',
fields: ['title', 'author', 'date', 'content'],
access: 'free',
},
},
}],
],
});Links
License
MIT
