Skip to content

Commit

Permalink
fix: Fix site build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed Oct 25, 2023
1 parent 539d468 commit e4e3ccc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"tasks": {
"build": "deno run -A --unstable --no-check https://deno.land/x/gustwind@v0.39.11/gustwind-cli/mod.ts -b -t cpuHalf -o ./build",
"build:linked": "gustwind -b -t cpuHalf -o ./build",
"build": "deno run -A --unstable --no-check https://deno.land/x/gustwind@v0.39.11/gustwind-cli/mod.ts -b -t cpuHalf -o ./public",
"build:linked": "gustwind -b -t cpuHalf -o ./public",
"start": "deno run -A --unstable --no-check https://deno.land/x/gustwind@v0.39.11/gustwind-cli/mod.ts -d -p 3000",
"start:linked": "gustwind -d -p 3000",
"serve": "deno run -A --unstable --no-check https://deno.land/x/gustwind@v0.39.11/gustwind-cli/mod.ts -s -p 3000 -i ./build",
"serve:linked": "gustwind -s -p 3000 -i ./build"
"serve": "deno run -A --unstable --no-check https://deno.land/x/gustwind@v0.39.11/gustwind-cli/mod.ts -s -p 3000 -i ./public",
"serve:linked": "gustwind -s -p 3000 -i ./public"
}
}

0 comments on commit e4e3ccc

Please sign in to comment.