1234567891011121314151617181920 |
- const { version, homepage } = require('./package.json');
- const cdn = process.env.NEXT_PUBLIC_LOCAL_QUILL
- ? `http://localhost:${process.env.npm_package_config_ports_webpack}`
- : `https://cdn.jsdelivr.net/npm/quill@${version}/dist`;
- module.exports = {
- version,
- cdn,
- github: 'https://github.com/quilljs/quill/tree/main/packages/website/',
- highlightjs: 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0',
- katex: 'https://cdn.jsdelivr.net/npm/katex@0.16.9/dist',
- url: homepage,
- title: 'Quill - Your powerful rich text editor',
- shortTitle: 'Quill Rich Text Editor',
- description:
- 'Quill is a free, open source WYSIWYG editor built for the modern web. Completely customize it for any need with its modular architecture and expressive API.',
- shortDescription:
- 'Quill is a free, open source rich text editor built for the modern web.',
- };
|