-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): use client only when prerendered (#251)
Resolves #239
- Loading branch information
1 parent
cd99d94
commit a20bbd0
Showing
7 changed files
with
494 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
{ | ||
"private": true, | ||
"devDependencies": { | ||
"serve": "14.2.4" | ||
}, | ||
"name": "cookie-control-playground", | ||
"private": true, | ||
"scripts": { | ||
"build": "nuxi build", | ||
"build": "pnpm run build:node", | ||
"build:node": "nuxi build", | ||
"build:static": "nuxi generate", | ||
"dev": "nuxi dev", | ||
"lint": "pnpm run lint:ts", | ||
"lint:fix": "pnpm run lint:ts --fix", | ||
"lint:ts": "vue-tsc --noEmit", | ||
"prepare": "cd .. && pnpm build --stub && cd playground && nuxi prepare" | ||
"prepare": "cd .. && pnpm build --stub && cd playground && nuxi prepare", | ||
"start": "pnpm run start:node", | ||
"start:node": "node .output/server/index.mjs", | ||
"start:static": "serve .output/public" | ||
} | ||
} |
Oops, something went wrong.