Yuki Takei 9 лет назад
Родитель
Сommit
c6b79fe81c
2 измененных файлов с 9 добавлено и 0 удалено
  1. 5 0
      config/webpack.common.js
  2. 4 0
      config/webpack.dev.js

+ 5 - 0
config/webpack.common.js

@@ -1,3 +1,7 @@
+/**
+ * @author: Yuki Takei <yuki@weseek.co.jp>
+ */
+
 const webpack = require('webpack');
 const helpers = require('./helpers');
 
@@ -54,6 +58,7 @@ module.exports = function (options) {
       ]
     },
     plugins: [
+
       new AssetsPlugin({
         path: helpers.root('public/js'),
         filename: 'webpack-assets.json',

+ 4 - 0
config/webpack.dev.js

@@ -1,3 +1,7 @@
+/**
+ * @author: Yuki Takei <yuki@weseek.co.jp>
+ */
+
 const webpack = require('webpack');
 const helpers = require('./helpers');
 const webpackMerge = require('webpack-merge');