1 Star 0 Fork 1

哎哟喂/lifeRestart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.cjs 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
Miller-du 提交于 2022-06-03 21:32 . Update webpack.config.cjs
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/index.js',
devtool: 'eval-cheap-module-source-map',
devServer: {
static: [
{
directory: path.join(__dirname, 'public'),
publicPath: '/public',
},
{
directory: path.join(__dirname, 'view'),
publicPath: '/view',
},
{
directory: path.join(__dirname, 'src'),
publicPath: '/src',
},
],
allowedHosts: "all",
},
output: {
path: path.resolve(__dirname, 'public/chunk'),
filename: '[name].[chunkhash:5].js',
clean: true,
},
plugins: [
new HtmlWebpackPlugin({
template: 'template/index.html',
filename: '../index.html',
}),
],
module: {
rules: [{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
"targets": "> 0.25%, not dead",
"useBuiltIns": "usage",
"corejs": "3.8.3",
}
]
]
}
}
}]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oiuv/lifeRestart.git
git@gitee.com:oiuv/lifeRestart.git
oiuv
lifeRestart
lifeRestart
master

搜索帮助