Add comments section to admin users/teams pages. (#1600)

* Add a comments section for a user's page in the Admin Panel
* Move user graphs into a modal for Admin Panel
* Create a new webpack JS chunk for the admin section for the Vue components (`components.js`)
  - Not really sure why webpack needed this to be separated out
* Closes #1052
This commit is contained in:
Kevin Chung
2020-08-13 11:15:12 -04:00
committed by GitHub
parent b73433e1c9
commit fab661d144
49 changed files with 361 additions and 251 deletions

View File

@@ -104,6 +104,13 @@ function getJSConfig(root, type, entries, mode) {
priority: 1,
reuseExistingChunk: true,
},
components: {
name: 'components',
filename: `components.${ext}.js`,
test: /components/,
priority: 1,
reuseExistingChunk: true,
},
default: {
filename: `core.${ext}.js`,
minChunks: 2,