Skip to content

Commit

Permalink
int= Fix rollup prod target typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbob3806 committed Feb 6, 2024
1 parent 177a065 commit 04b1db6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const configs = [
{
input: "./src/package/web.js",
output: [
{ file: "./build/package/web.js", format: "es" }
{ file: "./dist/package/web.js", format: "es" }
],
plugins: [
// @ts-expect-error - Terser is callable, but has no call
Expand All @@ -122,7 +122,7 @@ const configs = [
{
input: "./src/package/shader/worker.js",
output: [
{ file: "./build/package/worker.js", format: "es" }
{ file: "./dist/package/worker.js", format: "es" }
],
plugins: [
// @ts-expect-error - Terser is callable, but has no call
Expand Down

0 comments on commit 04b1db6

Please sign in to comment.