Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 574 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 574 Bytes

@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