lion/rocket.config.mjs
gerjanvangeest 8e450423da
chore: add api tables to all components (#2297)
* chore: add api tables to all components

* chore: only use eleventyignore as ignore files for rocket
2024-06-10 15:30:20 +02:00

35 lines
1.2 KiB
JavaScript

import { rocketLaunch } from '@rocket/launch';
import { rocketSearch } from '@rocket/search';
import { rocketBlog } from '@rocket/blog';
import { absoluteBaseUrlNetlify } from '@rocket/core/helpers';
import { adjustPluginOptions } from 'plugins-manager';
import { mdjsSetupCode } from '@mdjs/core';
import { copy } from '@web/rollup-plugin-copy';
export default {
presets: [rocketLaunch(), rocketSearch(), rocketBlog()],
eleventy(eleventyConfig) {
eleventyConfig.setUseGitIgnore(false);
},
absoluteBaseUrl: absoluteBaseUrlNetlify('http://localhost:8080'),
setupUnifiedPlugins: [
adjustPluginOptions(mdjsSetupCode, {
simulationSettings: {
simulatorUrl: '/simulator/',
languages: [
{ key: 'de-DE', name: 'German' },
{ key: 'en-GB', name: 'English (United Kingdom)' },
{ key: 'en-US', name: 'English (United States)' },
{ key: 'nl-NL', name: 'Dutch' },
],
},
}),
],
setupBuildPlugins: [
adjustPluginOptions(copy, config => {
// eslint-disable-next-line no-param-reassign
config.patterns = [...config.patterns, 'docs/**/assets/**'];
return config;
}),
],
};