mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
32 lines
581 B
TypeScript
32 lines
581 B
TypeScript
import { Config } from '../types/config';
|
|
|
|
const config: Config = {
|
|
profile: {
|
|
path: 'profile.yml',
|
|
},
|
|
frontpage: {
|
|
react: {
|
|
template: 'templates/react/pages/frontpage/index.tsx',
|
|
},
|
|
},
|
|
resume: {
|
|
latex: {
|
|
template: 'templates/latex/resume.tex',
|
|
},
|
|
},
|
|
articles: {
|
|
pattern: 'articles/**/*.md',
|
|
react: {
|
|
template: 'templates/react/pages/article/index.tsx',
|
|
},
|
|
latex: {
|
|
template: 'templates/latex/article.tex',
|
|
},
|
|
},
|
|
positions: {
|
|
pattern: 'resume/positions/**/*.md',
|
|
},
|
|
};
|
|
|
|
export default config;
|