This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({
14
14
const nextConfig = {
15
15
swcMinify : true ,
16
16
productionBrowserSourceMaps : true ,
17
+ compiler : {
18
+ removeConsole : {
19
+ exclude : [ 'error' ] ,
20
+ } ,
21
+ } ,
17
22
// pwa: {
18
23
// dest: 'public',
19
24
// disable: process.env.NODE_ENV !== 'production',
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderplanets_web" ,
3
- "version" : " 1.0.7 " ,
3
+ "version" : " 1.0.8 " ,
4
4
"license" : " Apache License 2.0" ,
5
5
"scripts" : {
6
6
"dev" : " cross-env NODE_ENV=dev next dev" ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ import {
78
78
UserPublishedArticlesStore ,
79
79
// BlogEditorStore,
80
80
CommunityTagSetterStore ,
81
- // CollectionFolderStore,
81
+ CollectionFolderStore ,
82
82
ShareStore ,
83
83
ArticleContentStore ,
84
84
ArticleViewerStore ,
@@ -181,7 +181,7 @@ const rootStore = T.model({
181
181
userPublishedArticles : T . optional ( UserPublishedArticlesStore , { } ) ,
182
182
// blogEditor: T.optional(BlogEditorStore, {}),
183
183
communityTagSetter : T . optional ( CommunityTagSetterStore , { } ) ,
184
- // collectionFolder: T.optional(CollectionFolderStore, {}),
184
+ collectionFolder : T . optional ( CollectionFolderStore , { } ) ,
185
185
share : T . optional ( ShareStore , { } ) ,
186
186
articleContent : T . optional ( ArticleContentStore , { } ) ,
187
187
articleViewer : T . optional ( ArticleViewerStore , { } ) ,
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export { default as KanbanThreadStore } from '@/containers/thread/KanbanThread/s
85
85
export { default as FriendsContentStore } from '@/containers/content/FriendsContent/store'
86
86
// export { default as BlogEditorStore } from '@/containers/editor/BlogEditor/store'
87
87
export { default as CommunityTagSetterStore } from '@/containers/tool/CommunityTagSetter/store'
88
- // export { default as CollectionFolderStore } from '@/containers/tool/CollectionFolder/store'
88
+ export { default as CollectionFolderStore } from '@/containers/tool/CollectionFolder/store'
89
89
export { default as ShareStore } from '@/containers/tool/Share/store'
90
90
export { default as ArticleContentStore } from '@/containers/content/ArticleContent/store'
91
91
export { default as ArticleViewerStore } from '@/containers/viewer/ArticleViewer/store'
You can’t perform that action at this time.
0 commit comments