feat: nested collections ()

This commit is contained in:
Daniel Lautzenheiser
2023-04-04 15:12:32 -04:00
committed by GitHub
parent 22a1b8d9c0
commit d0ecae310c
54 changed files with 2671 additions and 295 deletions

@ -54,7 +54,10 @@ module.exports = {
},
{
test: /\.css$/,
include: [...['ol', 'codemirror', '@toast-ui'].map(moduleNameToPath), path.resolve(__dirname, 'src')],
include: [
...['ol', 'codemirror', '@toast-ui'].map(moduleNameToPath),
path.resolve(__dirname, 'src'),
],
use: [
!isProduction ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader',
@ -112,6 +115,7 @@ module.exports = {
devServer: {
static: {
directory: './dev-test',
watch: false,
},
host: '0.0.0.0',
port: devServerPort,