You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Razzle v3, this hidden folder was being copied to the build/public directory.
Upon upgrading to Razzle v4, this folder is omitted.
Expected behavior
Hidden folder inside public should also be copied to build/public during build.
Suggested solution(s)
Razzle 4 makes use of webpack-copy-plugin to copy these files.
There is a configuration missing in the patterns globOptions, required to also include hidden files: globOptions: { dot: true }
Your environment
Software
Version(s)
Razzle
4.2.17
Razzle Plugins
Node
15.14.0
Browser
Yarn
1.22.5
Operating System
MacOS
TypeScript
3.8.3
React
The text was updated successfully, but these errors were encountered:
🐛 Bug report
Current Behavior
Inside the
public
directory, we have a hidden folder that needs to be copied into thebuild/public
directory.FTR the hidden folder
.well-known
is for Google's Digital Asset Links protocol, which needs to serve the following file: www.domain.com/.well-known/assetlinks.jsonUsing Razzle v3, this hidden folder was being copied to the
build/public
directory.Upon upgrading to Razzle v4, this folder is omitted.
Expected behavior
Hidden folder inside
public
should also be copied tobuild/public
during build.Suggested solution(s)
Razzle 4 makes use of
webpack-copy-plugin
to copy these files.There is a configuration missing in the patterns globOptions, required to also include hidden files:
globOptions: { dot: true }
Your environment
The text was updated successfully, but these errors were encountered: