No description
  • Vue 47.1%
  • CSS 28.7%
  • TypeScript 24.2%
Find a file
Geir Okkenhaug Jerstad 82817e5562 Fix dark mode toggle using @nuxtjs/color-mode
- Replace manual theme management with useColorMode() composable
- Configure classSuffix: '' to use .dark class (not .dark-mode)
- Add Tailwind v4 @variant dark for class-based dark mode
- Remove conflicting @media prefers-color-scheme dark rule
- Delete unused ThemeToggle.vue component
- Update AGENTS.md with principle to use built-in solutions
2026-02-15 12:03:43 +01:00
.opencode Add agent skills: frontend-design, nuxt, vue-best-practices, vueuse-functions, postgres, tailwind 2026-02-14 16:05:43 +01:00
app Fix dark mode toggle using @nuxtjs/color-mode 2026-02-15 12:03:43 +01:00
docs docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
openspec docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
public docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
.gitignore docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
AGENTS.md Fix dark mode toggle using @nuxtjs/color-mode 2026-02-15 12:03:43 +01:00
app.config.ts feat: configure Nuxt UI, create navigation, translate to Norwegian, apply GET Academy branding 2026-02-13 20:41:21 +01:00
minimal-sis-spec.md docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
nuxt.config.ts Fix dark mode toggle using @nuxtjs/color-mode 2026-02-15 12:03:43 +01:00
package.json docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
pnpm-lock.yaml docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
pnpm-workspace.yaml docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
README.md docs: update PostgreSQL/Supabase research with Google Workspace integration 2026-02-15 11:24:39 +01:00
tsconfig.json feat: configure Nuxt UI, create navigation, translate to Norwegian, apply GET Academy branding 2026-02-13 20:41:21 +01:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install 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 dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.