6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
const {fsExtra} = require("./tools");
|
|
const copyStaticFiles = () => {
|
|
fsExtra.copy("public/oauth.html", "dist/build/h5/oauth.html")
|
|
}
|
|
copyStaticFiles()
|