1 Star 1 Fork 0

whd-666/webpack_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 859 Bytes
一键复制 编辑 原始数据 按行查看 历史
pang 提交于 2021-06-29 16:03 . first
const path = require('path')
const Htmlwebpack = require('html-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
mode: 'development', // development production
entry: path.join(__dirname, './src/index.js'), // 入口
output: { // 出口
path: path.join(__dirname, './dist'),
filename: 'bundle.js'
},
plugins: [
new Htmlwebpack({
template: './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: /\.webp$/, use: 'url-loader?limit=100' },
{ test: /\.vue$/, use: 'vue-loader' }
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wanghongde/webpack_study.git
git@gitee.com:wanghongde/webpack_study.git
wanghongde
webpack_study
webpack_study
master

搜索帮助