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')({
1414const nextConfig = {
1515 swcMinify : true ,
1616 productionBrowserSourceMaps : true ,
17+ compiler : {
18+ removeConsole : {
19+ exclude : [ 'error' ] ,
20+ } ,
21+ } ,
1722 // pwa: {
1823 // dest: 'public',
1924 // disable: process.env.NODE_ENV !== 'production',
Original file line number Diff line number Diff line change 11{
22 "name" : " coderplanets_web" ,
3- "version" : " 1.0.7 " ,
3+ "version" : " 1.0.8 " ,
44 "license" : " Apache License 2.0" ,
55 "scripts" : {
66 "dev" : " cross-env NODE_ENV=dev next dev" ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ import {
7878 UserPublishedArticlesStore ,
7979 // BlogEditorStore,
8080 CommunityTagSetterStore ,
81- // CollectionFolderStore,
81+ CollectionFolderStore ,
8282 ShareStore ,
8383 ArticleContentStore ,
8484 ArticleViewerStore ,
@@ -181,7 +181,7 @@ const rootStore = T.model({
181181 userPublishedArticles : T . optional ( UserPublishedArticlesStore , { } ) ,
182182 // blogEditor: T.optional(BlogEditorStore, {}),
183183 communityTagSetter : T . optional ( CommunityTagSetterStore , { } ) ,
184- // collectionFolder: T.optional(CollectionFolderStore, {}),
184+ collectionFolder : T . optional ( CollectionFolderStore , { } ) ,
185185 share : T . optional ( ShareStore , { } ) ,
186186 articleContent : T . optional ( ArticleContentStore , { } ) ,
187187 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
8585export { default as FriendsContentStore } from '@/containers/content/FriendsContent/store'
8686// export { default as BlogEditorStore } from '@/containers/editor/BlogEditor/store'
8787export { 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'
8989export { default as ShareStore } from '@/containers/tool/Share/store'
9090export { default as ArticleContentStore } from '@/containers/content/ArticleContent/store'
9191export { default as ArticleViewerStore } from '@/containers/viewer/ArticleViewer/store'
You can’t perform that action at this time.
0 commit comments