加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
编码喵 提交于 2023-08-26 15:52 . webpack.
const path = require('path')
module.exports = [
{
entry: path.join(__dirname, './src/main.js'),
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'scripts')
},
module: {
rules: [
{
test: /\.css$/,
use:
[
{loader:'style-loader'},
{loader:'css-loader',options: {modules:true}},
]
}
]
},
mode: 'production'
},
{
entry: path.join(__dirname, './src/blocks.js'),
output: {
path: path.resolve(__dirname,'scripts'),
filename: 'blocks.js'
},
mode: 'production'
},
{
entry: path.join(__dirname, './src/custom_render.js'),
output: {
path: path.resolve(__dirname,'scripts'),
filename: 'custom_render.js'
},
mode: 'development'
}
]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化