diff --git a/web/app/remark.js b/web/app/remark.js index 97009fae..0b28667a 100644 --- a/web/app/remark.js +++ b/web/app/remark.js @@ -3,6 +3,7 @@ import 'common/polyfills'; // TODO: check it import { h, render } from 'preact'; import Root from './components/root'; +import ListComments from './components/list-comments'; // TODO: temp solution for extracting styles import { NODE_ID } from './common/constants'; diff --git a/web/webpack.config.js b/web/webpack.config.js index 8ee7bd5b..48857e75 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -38,10 +38,10 @@ const commonStyleLoaders = [ module.exports = { context: __dirname, entry: { - remark: './app/remark', embed: './app/embed', counter: './app/counter', 'last-comments': './app/last-comments', + remark: './app/remark', }, output: { path: publicFolder,