-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgro.config.ts
More file actions
20 lines (17 loc) · 760 Bytes
/
gro.config.ts
File metadata and controls
20 lines (17 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import {create_empty_gro_config} from './src/lib/gro_config.ts';
import {gro_plugin_sveltekit_library} from './src/lib/gro_plugin_sveltekit_library.ts';
import {gro_plugin_sveltekit_app} from './src/lib/gro_plugin_sveltekit_app.ts';
import {gro_plugin_gen} from './src/lib/gro_plugin_gen.ts';
/**
* This is the config for the Gro project itself.
* The default config for dependent projects is located at `./lib/gro.config.default.ts`.
* The default should be referenced as an example implementation, not this one.
* We use different patterns here for demonstration purposes.
*/
const config = create_empty_gro_config();
config.plugins = () => [
gro_plugin_sveltekit_library(),
gro_plugin_sveltekit_app(),
gro_plugin_gen(),
];
export default config;