mirror of
https://github.com/tlsnotary/website.git
synced 2026-01-09 14:08:01 -05:00
fix: github actions no error on missing files from webpack copy
This commit is contained in:
@@ -53,8 +53,15 @@ module.exports = {
|
||||
}),
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
{ from: "./public/manifest.json", to: "manifest.json" },
|
||||
{ from: "./public/*.pdf", to: "[name][ext]" }
|
||||
{
|
||||
from: "./public/manifest.json",
|
||||
to: "manifest.json"
|
||||
},
|
||||
{
|
||||
from: "./public/*.pdf",
|
||||
to: "[name][ext]",
|
||||
noErrorOnMissing: true
|
||||
}
|
||||
],
|
||||
}),
|
||||
// new HtmlWebpackInlineSourcePlugin(),
|
||||
|
||||
Reference in New Issue
Block a user