Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 24, 2024
1 parent df4b728 commit fbd9aae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ ThisBuild / nativeConfig ~= (System.getProperty("os.name").toLowerCase match {
_.withLTO(LTO.thin)
.withMode(Mode.releaseFast)
.withGC(GC.commix)
.withCompileOptions(_ :+ "-fPIC") // required by Archlinux aarch64 Virtual Machine on Apple Silicon
}
})

Expand Down
2 changes: 1 addition & 1 deletion site/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ yarn-error.log*
next-env.d.ts


app/favicon.ico
public/favicon.ico
chester-logo.svg
2 changes: 1 addition & 1 deletion site/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function copy_resource(from_file, to_file) {
console.warn(from_file + ' not found in resources directory');
}
}
copy_resource('favicon.ico', 'app/favicon.ico');
copy_resource('favicon.ico', 'public/favicon.ico');
copy_resource('chester-logo.svg', 'chester-logo.svg');

/** @type {import('next').NextConfig} */
Expand Down

0 comments on commit fbd9aae

Please sign in to comment.