代码拉取完成,页面将自动刷新
同步操作将从 天爱有情/tianai-captcha-web-sdk 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。