Skip to content

ever-guild/site

Repository files navigation

@ever-guild/site

Run development website locally

npm start

Build production files - to "dist" folder

npm run build
  • Ensure there are no TypeScript errors, otherwise complilation will be aborted.
  • Build files will be placed in the "dist" folder by default.
  • To change build folder, add this line to vite.config.ts defineConfig:
build: {
  outDir: './build-directory'
},

Run production build website locally

npm run preview