mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
import { build } from '@codedoc/core';
|
|
|
|
import { config } from './config';
|
|
import { installTheme$ } from './content/theme';
|
|
import { content } from './content';
|
|
|
|
|
|
build(config, content, installTheme$, {
|
|
resolve: {
|
|
modules: ['.codedoc/node_modules']
|
|
},
|
|
resolveLoader: {
|
|
modules: ['.codedoc/node_modules']
|
|
}
|
|
});
|