opnform/client
formsdev 57ce0e6114
remove api prefix from routes (#280)
* remove api prefix from routes

* PR changes

---------

Co-authored-by: Julien Nahum <julien@nahum.net>
2024-01-12 17:35:16 +01:00
..
components remove api prefix from routes (#280) 2024-01-12 17:35:16 +01:00
composables Fix sentry nuxt and custom domain redirect 2024-01-12 17:32:10 +01:00
data Figured out auth & middlewares 2023-12-16 19:21:03 +01:00
layouts Started to refactor pages 2023-12-09 17:02:23 +01:00
lib Fix sentry nuxt and custom domain redirect 2024-01-12 17:32:10 +01:00
middleware Add custom domain support 2024-01-12 15:43:28 +01:00
mixins/forms SEO meta nuxt migration (#274) 2024-01-04 18:38:50 +01:00
pages remove api prefix from routes (#280) 2024-01-12 17:35:16 +01:00
plugins Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
public Remove useless images + fix templates show page 2024-01-10 17:22:25 +01:00
scss Work in progress 2023-12-09 15:47:03 +01:00
server Add custom domain support 2024-01-12 15:43:28 +01:00
stores Fix composable issue 2024-01-11 17:16:50 +01:00
.gitignore Add loglevel param 2024-01-06 15:26:18 +01:00
README.md Work in progress 2023-12-09 15:47:03 +01:00
app.vue No follow for non-production env 2024-01-12 15:59:01 +01:00
error.vue NuxtImg Migration (#279) 2024-01-05 11:41:49 +01:00
nuxt.config.ts Fix sentry nuxt and custom domain redirect 2024-01-12 17:32:10 +01:00
opnform.config.js Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
package-lock.json Update package json 2024-01-05 15:43:52 +01:00
package.json Fix build script 2024-01-06 00:31:28 +01:00
runtimeConfig.js URL generation (front&back) + fixed authJWT for SSR 2024-01-11 14:07:27 +01:00
sitemap.js Remove appconfig in favor of runtimeconfig 2024-01-03 17:38:11 +01:00
tailwind.config.js Work in progress 2023-12-09 15:47:03 +01:00
tsconfig.json Work in progress 2023-12-09 15:47:03 +01:00

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.