mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
This PR includes Vite examples, in particular: Vite: Vanilla Javascript Vite: Vanilla Tyescript Also updated the general readme to reflect the addition.
16 lines
273 B
JSON
16 lines
273 B
JSON
{
|
|
"name": "vite-vanilla-ts",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.3.4"
|
|
}
|
|
}
|