1 Star 0 Fork 22

王者荣耀/s_wangzhan_fanxiao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
王者荣耀 提交于 2023-06-30 18:45 . webpack
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry:{
main:"./src/main.js"//去设置主模块 进行入口的
},
output:{
path: __dirname + '/dist' //相对的输入模块
},
mode:"development", //设置为开发环境
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
},
{
test: /\.(png|jpg|gif)$/i,
type: 'asset/resource'
}
]
},module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
},
{
test: /\.(png|jpg|gif)$/i,
type: 'asset/resource'
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './public/index.html',
title: 'vue-study'
}),
new VueLoaderPlugin()
],
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/oldfff123/s_wangzhan_fanxiao.git
git@gitee.com:oldfff123/s_wangzhan_fanxiao.git
oldfff123
s_wangzhan_fanxiao
s_wangzhan_fanxiao
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385