代码拉取完成,页面将自动刷新
const path = require('path');
var webpack = require('webpack');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin');
function resolve(dir) {
return path.join(__dirname, dir)
}
const config = {
entry: './src/flow.js',
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: '/assets/',
library: 'flow',
libraryTarget: 'umd',
filename: 'flow.js'
},
resolve: {
extensions: ['.js', '.json'],
alias: {
'@': resolve('src'),
},
symlinks: false
},
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
presets: ['es2015','env']
}
},
exclude: /node_modules/,
include: [resolve('src')]
},{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
//如果需要,可以在 less-loader 之前将 resolve-url-loader 链接进来
use: ['css-loader', 'less-loader']
})
// use: [{
// loader: "style-loader"
// }, {
// loader: "css-loader"
// }, {
// loader: "less-loader",
// options: {
// strictMath: true,
// noIeCompat: true
// }
// }]
}
]
},
plugins: [
// new webpack.LoaderOptionsPlugin({
// options:{
// babel:{
// babelrc: false,
// "presets": ["es2015"]
// }
// }
// }),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new ExtractTextPlugin("index.css")
]
}
module.exports = config;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。