doc: comment in webpack configs

This commit is contained in:
07akioni 2019-06-28 15:58:33 +08:00
parent 170f320870
commit 5216645165
5 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,6 @@
/**
* Webpack config to see if css file works on demo page
*/
const path = require('path')
const webpack = require('webpack')
const config = require('./config')

View File

@ -1,3 +1,6 @@
/**
* Webpack config under development
*/
const path = require('path')
const webpack = require('webpack')
const config = require('./config')

View File

@ -1,3 +1,6 @@
/**
* Webpack config to pack documentation page
*/
const path = require('path')
const webpack = require('webpack')
const config = require('./config')

View File

@ -1,3 +1,6 @@
/**
* Webpack config to test if there is any problem in index.js before release
*/
const path = require('path')
const webpack = require('webpack')
const config = require('./config')

View File

@ -1,5 +1,7 @@
/**
* Webpack config for unit test
*/
const path = require('path')
// const ProgressBarPlugin = require('progress-bar-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const config = require('./config')