Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dungsil committed Mar 29, 2024
1 parent 5af6e52 commit 0f11e1f
Show file tree
Hide file tree
Showing 9 changed files with 7,171 additions and 0 deletions.
75 changes: 75 additions & 0 deletions nuxt-fonts-106/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun 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.
11 changes: 11 additions & 0 deletions nuxt-fonts-106/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template>
<div>
<NuxtWelcome/>
</div>
</template>

<style>
body {
font-family: "Pretendard Variable", sans-serif;
}
</style>
9 changes: 9 additions & 0 deletions nuxt-fonts-106/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },

modules: [
'@nuxt/devtools',
'@nuxt/fonts'
],
})
18 changes: 18 additions & 0 deletions nuxt-fonts-106/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/fonts": "^0.5.1",
"nuxt": "^3.11.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
}
}

0 comments on commit 0f11e1f

Please sign in to comment.