加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
superLovezhang 提交于 2019-04-14 17:16 . init my project
const path = require ('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
entry: path.join(__dirname, './src/main.js'),
output: {
path: path.join(__dirname, './dist'),
filename: 'bundle.js'
},
plugins:[
new htmlWebpackPlugin({
template:path.join(__dirname, './src/index.html'),
filename: 'index.html'
}),
new VueLoaderPlugin()
],
module:{
rules:[
{ test:/\.css$/, use: ['style-loader', 'css-loader'] },
{ test:/\.less$/, use: ['style-loader', 'css-loader', 'less-loader'] },
{ test:/\.scss$/, use: ['style-loader', 'css-loader', 'sass-loader' ] },
{ test:/\.(jpg|png|gift|svg)$/, use: 'url-loader?limit=1&name=[hash:8]-[name].[ext]'},
{ test:/\.js$/, use: 'babel-loader', exclude:/node_modules/ },
{ test:/\.vue$/,loader: 'vue-loader' },
{ test:/\.(eot|svg|ttf|woff|woff2)/, use: 'url-loader'}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化