* feat: devgallery api mode * chore: update react version * feat: dev gallery app * chore: fix component tests * chore: lint fixes * chore: link mock block ids to real block type api
13 lines
559 B
JavaScript
13 lines
559 B
JavaScript
module.exports = {
|
|
/*
|
|
Modules you want to use from local source code. Adding a module here means that when this app
|
|
runs its build, it'll resolve the source from peer directories of this app.
|
|
moduleName: the name you use to import code from the module.
|
|
dir: The relative path to the module's source code.
|
|
dist: The sub-directory of the source code where it puts its build artifact. Often "dist".
|
|
*/
|
|
localModules: [
|
|
{ moduleName: '@edx/frontend-lib-content-components', dir: '../../frontend-lib-content-components' },
|
|
],
|
|
};
|