fixing app icon
Some checks failed
Go / build (push) Has been cancelled

This commit is contained in:
2025-10-09 17:52:14 +01:00
parent cc63fe751a
commit b7c2e609f6
5 changed files with 90 additions and 9 deletions

View File

@@ -5,6 +5,7 @@ import terser from "@rollup/plugin-terser";
import resolve from "@rollup/plugin-node-resolve";
import livereload from "rollup-plugin-livereload";
import css from "rollup-plugin-css-only";
import copy from "rollup-plugin-copy";
const production = !process.env.ROLLUP_WATCH;
@@ -60,6 +61,13 @@ export default {
}),
commonjs(),
// Copy static files from public to dist
copy({
targets: [
{ src: "public/**/*", dest: "dist" }
]
}),
// In dev mode, call `npm run start` once
// the bundle has been generated
!production && serve(),