- Modified the `nuxt.config.ts` file to correct the `cssPath` for Tailwind CSS from an array to a string format, ensuring proper configuration. - Updated `package-lock.json` and `package.json` to reflect the following dependency upgrades: - Upgraded `@pinia/nuxt` from `0.5.5` to `0.11.0`. - Upgraded `@vueuse/core` from `11.2.0` to `13.1.0`. - Upgraded `pinia` from `2.2.4` to `3.0.2`. - Upgraded `@nuxt/eslint-config` from `0.2.0` to `1.3.0`. - Upgraded `@nuxt/icon` from `1.8.2` to `1.12.0`. - Upgraded `@nuxtjs/sitemap` from `6.1.3` to `7.2.0`. - Upgraded `eslint` from `8.57.1` to `9.0.0`. - Upgraded `nuxt` from `3.16.1` to `3.17.1`. These changes enhance the configuration and ensure compatibility with the latest versions of dependencies, improving overall application stability and performance. |
||
|---|---|---|
| .. | ||
| components | ||
| composables | ||
| data | ||
| i18n/lang | ||
| layouts | ||
| lib | ||
| middleware | ||
| mixins/forms | ||
| pages | ||
| plugins | ||
| public | ||
| scss | ||
| server | ||
| stores | ||
| .env.docker | ||
| .env.example | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| README.md | ||
| app.config.ts | ||
| app.vue | ||
| error.vue | ||
| gtm.js | ||
| nuxt.config.ts | ||
| opnform.config.js | ||
| package-lock.json | ||
| package.json | ||
| runtimeConfig.js | ||
| sentry.client.config.ts | ||
| sentry.server.config.ts | ||
| sitemap.js | ||
| tailwind.config.js | ||
| tsconfig.json | ||
README.md
Nuxt 3 Minimal Starter
Look at the Nuxt 3 documentation to learn more.
Setup
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.