Remove OS-specific separators from copy plugin

This commit is contained in:
nachtjasmin 2023-06-14 17:01:28 +02:00
parent 5da1a090f9
commit 1a4f26c538
No known key found for this signature in database

View file

@ -44,8 +44,8 @@ export const defaultBuildOptions = {
// Copy all files from src/ except our build files (they would be overwritten) to dist/.
plugins: [
copyPlugin({
src: "./src/",
dest: "./dist/",
src: "src",
dest: "dist",
recursive: true,
// Return true if the file should be copied and false otherwise.