1 Star 0 Fork 35

mycasbin/tianai-captcha-web-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 2.41 KB
一键复制 编辑 原始数据 按行查看 历史
天爱有情 提交于 2024-07-16 09:52 . 适配 tac 1.5.0
const webpack = require('webpack')
const {merge} = require("webpack-merge")
const devConfig = require("./webpack.config.dev")
const prodConfig = require("./webpack.config.prod")
const path = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const {CleanWebpackPlugin} = require("clean-webpack-plugin");
const commonConfig = {
mode: 'development',
entry: "./src/index.js",
output: {
filename: "tac.js",
path: path.resolve(__dirname, "./dist")
},
resolve: {
alias: {
"@": path.join(__dirname, "./src") // 这样@符号就表示项目根目录中src这一层路径
}
},
module: {
rules: [
{
test: /\.(css)$/,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.s[ac]ss$/,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
use: {
loader: 'file-loader',
options: {
esModule: false,
name: '[name].[ext]',
outputPath: 'tac/images'
}
},
type: 'javascript/auto'
},
// {
// test: /\.js$/,
// exclude: /node_modules/,
// loader: 'babel-loader',
// options: {
// // 预设babel做怎样的兼容性处理
// presets: ['@babel/preset-env']
// }
// }
]
},
plugins: [
new MiniCssExtractPlugin({
// 指定抽离的之后形成的文件名
filename: 'tac/css/tac.css'
}),
new webpack.HotModuleReplacementPlugin(),
new CleanWebpackPlugin()
],
devServer: {
// 开发时可直接访问到 ./public 下的静态资源,这些资源在开发中不必打包
port: 3000,
static: "./dist"
}
}
module.exports = (env, argv) => {
if (argv && argv.mode === 'production') {
console.log("=============production==================")
return merge(commonConfig, prodConfig);
}else {
console.log("=============development==================")
return merge(commonConfig, devConfig);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mycasbin/tianai-captcha-web-sdk.git
git@gitee.com:mycasbin/tianai-captcha-web-sdk.git
mycasbin
tianai-captcha-web-sdk
tianai-captcha-web-sdk
master

搜索帮助