The configuration used by Vitro must be in a file named vitro.config.js
with an object as its module.exports
This is what the default configuration looks like
1// vitro.config.js23/** @type {import('@vitro/cli').VitroConfig} */4module.exports = {5globs: ['./**/*.vitro.jsx'], // globs to search for stories files6ignore: [], // add directories to ignore when searching for stories files7basePath: '/' // deployment base path8// to enable the click to source feature in prod9links: {10github: { // or gitlab11url: 'https://github.com/remorses/vitro',12branch: 'master',13path: 'examples', // or just omit if vitro root is root of the repo14},15}16}