Now you can make your templates public by publishing them to the Flyyer Community.
It is super easy, just set on your flyyer.config.js
the private
flag to false
.
flyyer.config.js
const {config} = require('@flyyer/types');
require('dotenv').config();
module.exports = config({
engine: 'react-typescript',
key: process.env.FLYYER_KEY,
deck: 'impact-news',
// Optionals
name: 'Impact News',
description: 'A short description of this deck.',
homepage: 'https://lopezjuri.com', // your personal webpage.
keywords: ['news', 'vue', 'tailwind'],
private: false, // ๐ set to false to make it public
repository: 'https:/github.com/useflyyer/impact-news',
sizes: ['THUMBNAIL', 'BANNER', 'SQUARE', 'STORY'] // supported formats
});