mirror of
https://github.com/dromara/tianai-captcha.git
synced 2026-05-06 21:53:10 +08:00
5eb258215b
tianai-captcha-springboot-starter tianai-captcha-web-sdk tianai-captcha-solon-plugin 整合到一块
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
const path = require("path");
|
|
module.exports = {
|
|
output: {
|
|
filename: "tac/js/tac.js",
|
|
path: path.resolve(__dirname, "./dist")
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: './public/index.html'
|
|
}),
|
|
]
|
|
}
|