-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: Merge pull request #49 from vuejsita/develop
[v2] Nuovo rilascio
- Loading branch information
Showing
14 changed files
with
8,400 additions
and
8,214 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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
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,2 +1,2 @@ | ||
NODE_ENV="production" yarn lint | ||
yarn typecheck | ||
NODE_ENV="production" pnpm lint | ||
pnpm typecheck |
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,77 +1,50 @@ | ||
# Vue.js Italia - Vuebsait | ||
|
||
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. | ||
Il Vuebsait ufficiale della community Italiana di [**Vue.js**](https://vuejs.org/): il framework JavaScript progressivo. | ||
|
||
Look at the [Content documentation](https://content.nuxt.com/) to learn more. | ||
Look at the [**Nuxt 3 documentation**](https://nuxt.com/docs/getting-started/introduction) to learn more. | ||
Look at the [**Content documentation**](https://content.nuxt.com/) to learn more. | ||
|
||
## Setup | ||
## Prerequisites | ||
|
||
Make sure to install the dependencies: | ||
Make sure to have [**Node.js**](https://nodejs.org/) installed on your system. | ||
|
||
## Package Manager | ||
|
||
Enable [`pnpm`](https://pnpm.io/) as the package manager for the project: | ||
|
||
```bash | ||
# npm | ||
npm install | ||
corepack enable pnpm | ||
``` | ||
|
||
# pnpm | ||
pnpm install | ||
## Setup | ||
|
||
# yarn | ||
yarn install | ||
Make sure to install the dependencies: | ||
|
||
# bun | ||
bun install | ||
```bash | ||
pnpm install | ||
``` | ||
|
||
## Development Server | ||
|
||
Start the development server on `http://localhost:3000`: | ||
|
||
```bash | ||
# npm | ||
npm run dev | ||
|
||
# pnpm | ||
pnpm run dev | ||
|
||
# yarn | ||
yarn dev | ||
|
||
# bun | ||
bun run dev | ||
``` | ||
|
||
## Production | ||
|
||
Build the application for production: | ||
|
||
```bash | ||
# npm | ||
npm run build | ||
|
||
# pnpm | ||
pnpm run build | ||
|
||
# yarn | ||
yarn build | ||
|
||
# bun | ||
bun run build | ||
``` | ||
|
||
Locally preview production build: | ||
|
||
```bash | ||
# npm | ||
npm run preview | ||
|
||
# pnpm | ||
pnpm run preview | ||
|
||
# yarn | ||
yarn preview | ||
|
||
# bun | ||
bun run preview | ||
``` | ||
|
||
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. |
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,3 +1,7 @@ | ||
export default defineAppConfig({ | ||
nuxtIcon: { } | ||
nuxtIcon: { }, | ||
umami: { | ||
id: "e6c84217-df5c-4e4d-9cf3-e7d1b2267a8d", | ||
version: 2 | ||
} | ||
}); |
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
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,9 +1,13 @@ | ||
// https://nuxt.com/docs/api/configuration/nuxt-config | ||
export default defineNuxtConfig({ | ||
app: { | ||
head: { | ||
title: "Vue.js Italia", | ||
link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }], | ||
}, | ||
}, | ||
devtools: { enabled: true }, | ||
modules: [ | ||
'@nuxt/content', | ||
'@nuxt/ui' | ||
], | ||
extends: [ "nuxt-umami" ], | ||
modules: ["@nuxt/content", "@nuxt/ui"], | ||
typescript: { typeCheck: true } | ||
}) |
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
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
Oops, something went wrong.