1 Star 0 Fork 0

ereddate/mfo-router

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.dev.config.js 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
yandong 提交于 2023-02-15 22:03 +08:00 . update, add, webpack
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
module.exports = {
mode: "development",
entry: [path.resolve(__dirname, "src", "index.js")],
output: {
path: path.resolve(__dirname, "dist"),
filename: "js/mfo-router.[hash:8].js",
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
inject: "body",
filename: "index.html",
template: path.resolve(__dirname, "./public/index.html"),
}),
],
devtool: "source-map",
module: {
rules: [
{
test: /\.(js|jsx|ts|tsx)$/,
use: ["babel-loader"],
include: path.resolve(__dirname, "src"),
exclude: /node_modules/,
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.(png|jpg|jpeg|gif|svg)$/,
type: "asset/resource",
},
{
test: /\.(eot|ttf|otf|woff2)$/,
type: "asset",
},
],
},
devServer: {
static: {
directory: path.resolve(__dirname, "dist"),
},
port: 8080,
open: true,
host: "localhost",
compress: true,
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ereddate2017/mfo-router.git
[email protected]:ereddate2017/mfo-router.git
ereddate2017
mfo-router
mfo-router
master

搜索帮助