add hover-highlight prop in Table
This commit is contained in:
parent
af43876007
commit
2474ee5929
6 changed files with 7596 additions and 9 deletions
42
build/webpack.ssr.config.js
Normal file
42
build/webpack.ssr.config.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
/**
|
||||
* 本地预览
|
||||
*/
|
||||
|
||||
var path = require('path');
|
||||
var webpack = require('webpack');
|
||||
// var ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
var merge = require('webpack-merge');
|
||||
var webpackBaseConfig = require('./webpack.base.config.js');
|
||||
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin');
|
||||
|
||||
module.exports = merge(webpackBaseConfig, {
|
||||
// 入口
|
||||
entry: {
|
||||
main: './examples/main',
|
||||
vendors: ['vue', 'vue-router']
|
||||
},
|
||||
// 输出
|
||||
output: {
|
||||
path: path.join(__dirname, '../examples/dist'),
|
||||
publicPath: '',
|
||||
filename: '[name].js'
|
||||
// chunkFilename: '[name].chunk.js'
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
iview: '../../src/index',
|
||||
// vue: 'vue/dist/vue.js'
|
||||
vue: 'vue/dist/vue.runtime.js'
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
// new webpack.optimize.CommonsChunkPlugin({ name: 'vendors', filename: 'vendor.bundle.js' }),
|
||||
new HtmlWebpackPlugin({
|
||||
inject: true,
|
||||
filename: path.join(__dirname, '../examples/dist/index.html'),
|
||||
template: path.join(__dirname, '../examples/index.html')
|
||||
}),
|
||||
new FriendlyErrorsPlugin()
|
||||
]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue