FlyWeb integration for Nuxt — auto-generate /.well-known/flyweb.json so AI agents can discover your structured content.
npm install nuxt-flyweb// 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',
},
},
}],
],
});MIT