添加doc预览

This commit is contained in:
niunai
2017-01-16 02:48:57 +08:00
parent bf021c1d19
commit 347dc1751c
31 changed files with 11447 additions and 104 deletions

13
build/webpack.build.js Normal file
View File

@@ -0,0 +1,13 @@
var config = require('./webpack.config.js')
config.entry = {
'oxygen': './src/index.js'
}
config.output = {
filename: './dist/[name].js',
library: 'Oxygen',
libraryTarget: 'umd'
}
module.exports = config