Getting started
Installation
npm install kompendiumConfiguration
import { Config } from '@stencil/core';
import { kompendium } from 'kompendium';
export const config: Config = {
namespace: 'my-project',
outputTargets: [
{
type: 'docs-custom',
strict: true,
generator: kompendium()
},
{
type: 'www',
serviceWorker: null,
copy: [{
src: '../node_modules/kompendium/dist/',
dest: 'assets/kompendium/'
}]
}
]
};Running the dev server
Last updated