- Node.js
- pnpm
For version information, please refer to package.json.
# clone via ssh
git clone [email protected]:vuejs-jp/vuefes-2025.git
# install dependencies
pnpm install
# launch application dev server and storybook
pnpm devThis project includes a custom Nuxt module for managing feature flags with full TypeScript support.
- Type-safe: Auto-generates TypeScript definitions for all feature flags
- Universal: Works seamlessly in both client and server environments
- Build-time resolution: All feature flags are resolved during build step, not at runtime
- Zero runtime overhead: Flags are replaced at build time with constants
- Tree-shaking friendly: Unused code paths are eliminated from the final bundle
Configure feature flags in nuxt.config.ts:
export default defineNuxtConfig({
  featureFlags: {
    timetable: true,
    soldOutAfterParty: false,
  }
})Use feature flags with dynamic imports to conditionally load components:
<script setup lang="ts">
// Conditionally import component based on feature flag
const BetaFeature = import.meta.vfFeatures.betaFeature 
  ? defineAsyncComponent(() => import('~/components/BetaFeature.vue'))
  : null;
</script>
<template>
  <div>
    <BetaFeature v-if="BetaFeature" />
  </div>
</template>Control page generation with Nuxt's ignore option:
This approach completely excludes pages from the build, resulting in smaller bundle sizes and true 404s when features are disabled.
See: https://nuxt.com/docs/4.x/api/nuxt-config#ignore
Control API endpoints with feature flags:
// server/api/timetable.get.ts
export default defineEventHandler(async (event) => {
  // Block API if feature is disabled
  if (!import.meta.vfFeatures.timetable) {
    throw createError({
      statusCode: 404,
      statusMessage: 'Endpoint not available'
    });
  }
  // Return timetable data
  return await getTimetableData();
});- Timetable
- Staff List
- Sponsor Map
- Migrate to Cloudflare Workers
- remove PrimeVue (Carousel, Form)
- Performance Improvements
- Accessibility Improvements
- Story Improvements
- Refactor Static Datasets