├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg ├── pwa-192x192.png ├── pwa-512x512.png ├── robots.txt └── safari-pinned-tab.svg ├── scripts └── move-dist.sh ├── serverless ├── .gitignore ├── api │ ├── get-page-props.js │ └── index.js ├── package-lock.json ├── package.json └── vercel.json ├── src ├── App.vue ├── components │ ├── Footer.vue │ └── README.md ├── i18n │ ├── date-formats.ts │ ├── index.ts │ ├── locales.ts │ ├── number-formats.ts │ └── translations │ │ ├── README.md │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── tr.json │ │ ├── vi.json │ │ └── zh-CN.json ├── layouts │ ├── 404.vue │ ├── README.md │ ├── default.vue │ └── home.vue ├── main.ts ├── modules │ ├── README.md │ └── nprogress.ts ├── pages │ ├── README.md │ ├── [...all].vue │ ├── about.md │ ├── hi │ │ └── [name].vue │ └── index.vue ├── shims.d.ts └── styles │ ├── main.css │ └── markdown.css ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: antfu 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | trailingComma: es5 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/public/pwa-192x192.png -------------------------------------------------------------------------------- /public/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/public/pwa-512x512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /scripts/move-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/scripts/move-dist.sh -------------------------------------------------------------------------------- /serverless/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/.gitignore -------------------------------------------------------------------------------- /serverless/api/get-page-props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/api/get-page-props.js -------------------------------------------------------------------------------- /serverless/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/api/index.js -------------------------------------------------------------------------------- /serverless/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/package-lock.json -------------------------------------------------------------------------------- /serverless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/package.json -------------------------------------------------------------------------------- /serverless/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/serverless/vercel.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/i18n/date-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/date-formats.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/locales.ts -------------------------------------------------------------------------------- /src/i18n/number-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/number-formats.ts -------------------------------------------------------------------------------- /src/i18n/translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/README.md -------------------------------------------------------------------------------- /src/i18n/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/en.json -------------------------------------------------------------------------------- /src/i18n/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/es.json -------------------------------------------------------------------------------- /src/i18n/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/fr.json -------------------------------------------------------------------------------- /src/i18n/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/it.json -------------------------------------------------------------------------------- /src/i18n/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/ja.json -------------------------------------------------------------------------------- /src/i18n/translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/ko.json -------------------------------------------------------------------------------- /src/i18n/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/tr.json -------------------------------------------------------------------------------- /src/i18n/translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/vi.json -------------------------------------------------------------------------------- /src/i18n/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/i18n/translations/zh-CN.json -------------------------------------------------------------------------------- /src/layouts/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/layouts/404.vue -------------------------------------------------------------------------------- /src/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/layouts/README.md -------------------------------------------------------------------------------- /src/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/layouts/default.vue -------------------------------------------------------------------------------- /src/layouts/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/layouts/home.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/modules/README.md -------------------------------------------------------------------------------- /src/modules/nprogress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/modules/nprogress.ts -------------------------------------------------------------------------------- /src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/pages/README.md -------------------------------------------------------------------------------- /src/pages/[...all].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/pages/[...all].vue -------------------------------------------------------------------------------- /src/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/pages/about.md -------------------------------------------------------------------------------- /src/pages/hi/[name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/pages/hi/[name].vue -------------------------------------------------------------------------------- /src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/pages/index.vue -------------------------------------------------------------------------------- /src/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/shims.d.ts -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/src/styles/markdown.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frandiox/vitesse-ssr-template/HEAD/vite.config.ts --------------------------------------------------------------------------------