-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquintype-build.config.js
28 lines (26 loc) · 1.8 KB
/
quintype-build.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const quintypeBuildConfig = require("@quintype/build/config/quintype-build");
const loadableConfigObj = {
loadableConfig: {
entryFiles: {
topbar: "./app/isomorphic/components/layouts/header",
navbar: "./app/isomorphic/components/layouts/header/nav-bar",
footer: "./app/isomorphic/components/layouts/footer",
arrowElevenStoriesCssChunk: "./app/isomorphic/arrow/components/Rows/ElevenStories",
arrowFourColGridCssChunk: "./app/isomorphic/arrow/components/Rows/FourColGrid",
arrowFourColTwelveStoriesCssChunk: "./app/isomorphic/arrow/components/Rows/FourColTwelveStory",
arrowFullScreenSliderCssChunk: "./app/isomorphic/arrow/components/Rows/FullScreenSlider",
arrowOneColStoryListCssChunk: "./app/isomorphic/arrow/components/Rows/OneColStoryList",
arrowThreeColGridCssChunk: "./app/isomorphic/arrow/components/Rows/ThreeColGrid",
arrowThreeColSevenStoryCssChunk: "./app/isomorphic/arrow/components/Rows/ThreeColSevenStory",
arrowTwoColFourStoriesCssChunk: "./app/isomorphic/arrow/components/Rows/TwoColFourStory",
authorPage: "./app/isomorphic/components/pages/author-page/index.js",
arrowTextStoryCssChunk: "./app/isomorphic/arrow/components/Rows/StoryTemplates/TextStoryTemplates",
arrowVideoStoryCssChunk: "./app/isomorphic/arrow/components/Rows/StoryTemplates/VideoStoryTemplates",
arrowPhotoStoryCssChunk: "./app/isomorphic/arrow/components/Rows/StoryTemplates/PhotoStoryTemplates",
arrowListicleStoryCssChunk: "./app/isomorphic/arrow/components/Rows/StoryTemplates/ListicleStoryTemplates",
arrowLiveBlogStoryCssChunk: "./app/isomorphic/arrow/components/Rows/StoryTemplates/LiveBlogStoryTemplates",
},
},
};
const modifiedBuildConfig = { ...quintypeBuildConfig, ...loadableConfigObj };
module.exports = modifiedBuildConfig;