├── .eleventy.js ├── .github └── workflows │ ├── run-base-dataset.yml │ ├── run-dev-dataset.yml │ ├── run-large-dataset.yml │ └── run-small-dataset.yml ├── .gitignore ├── .netlify └── netlify-plugin-jest │ ├── index.js │ └── manifest.yml ├── .nvmrc ├── .prettierrc ├── .ruby-version ├── .stylelintrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── index.js ├── lib ├── builder.js ├── builder.spec.js ├── config.js ├── config.spec.js ├── database.js ├── generate-test-files.js ├── generator.js ├── generator.spec.js ├── import.js ├── logger.js ├── logger.queries.js ├── logger.spec.js └── run.js ├── netlify.toml ├── package.json ├── src ├── _data │ └── results.js ├── _layouts │ └── layout.njk ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js ├── index.njk ├── postcss.config.js └── results-example.json ├── ssg ├── astro │ ├── .gitignore │ ├── .npmrc │ ├── .nvmrc │ ├── .stackblitzrc │ ├── README.md │ ├── astro.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── assets │ │ │ └── logo.svg │ │ ├── favicon.ico │ │ ├── robots.txt │ │ └── style │ │ │ ├── global.css │ │ │ └── home.css │ ├── sandbox.config.json │ ├── src │ │ ├── components │ │ │ └── Tour.astro │ │ ├── content │ │ │ └── .gitkeep │ │ ├── layouts │ │ │ └── MainLayout.astro │ │ └── pages │ │ │ ├── [slug].astro │ │ │ └── index.astro │ └── tsconfig.json ├── eleventy │ ├── .eleventy.js │ ├── .eleventyignore │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _includes │ │ └── layout.njk │ │ └── pages │ │ └── pages.json ├── gatsby │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── LICENSE │ ├── README.md │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── components │ │ └── layout.js │ │ └── templates │ │ └── page.js ├── hugo │ ├── .gitignore │ ├── README.md │ ├── archetypes │ │ └── default.md │ ├── config.toml │ └── layouts │ │ └── _default │ │ └── single.html ├── jekyll │ ├── .bundle │ │ └── config │ ├── .gitignore │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── _config.yml │ └── _layouts │ │ └── layout.html ├── microsite │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── pages │ │ └── [slug].tsx ├── next │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── pages │ │ ├── _app.js │ │ └── pages │ │ └── [slug].js └── nuxt │ ├── .gitignore │ ├── README.md │ ├── nuxt.config.js │ ├── package-lock.json │ ├── package.json │ └── pages │ └── blog │ └── _slug.vue ├── tailwind.config.js ├── test.config.js └── webpack.config.js /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.github/workflows/run-base-dataset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.github/workflows/run-base-dataset.yml -------------------------------------------------------------------------------- /.github/workflows/run-dev-dataset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.github/workflows/run-dev-dataset.yml -------------------------------------------------------------------------------- /.github/workflows/run-large-dataset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.github/workflows/run-large-dataset.yml -------------------------------------------------------------------------------- /.github/workflows/run-small-dataset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.github/workflows/run-small-dataset.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/netlify-plugin-jest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.netlify/netlify-plugin-jest/index.js -------------------------------------------------------------------------------- /.netlify/netlify-plugin-jest/manifest.yml: -------------------------------------------------------------------------------- 1 | name: netlify-plugin-jest 2 | inputs: [] 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.prettierrc -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.6 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/index.js -------------------------------------------------------------------------------- /lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/builder.js -------------------------------------------------------------------------------- /lib/builder.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/builder.spec.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/config.spec.js -------------------------------------------------------------------------------- /lib/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/database.js -------------------------------------------------------------------------------- /lib/generate-test-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/generate-test-files.js -------------------------------------------------------------------------------- /lib/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/generator.js -------------------------------------------------------------------------------- /lib/generator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/generator.spec.js -------------------------------------------------------------------------------- /lib/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/import.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/logger.queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/logger.queries.js -------------------------------------------------------------------------------- /lib/logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/logger.spec.js -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/lib/run.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/package.json -------------------------------------------------------------------------------- /src/_data/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/_data/results.js -------------------------------------------------------------------------------- /src/_layouts/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/_layouts/layout.njk -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/assets/js/main.js -------------------------------------------------------------------------------- /src/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/index.njk -------------------------------------------------------------------------------- /src/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/postcss.config.js -------------------------------------------------------------------------------- /src/results-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/src/results-example.json -------------------------------------------------------------------------------- /ssg/astro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/.gitignore -------------------------------------------------------------------------------- /ssg/astro/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/.npmrc -------------------------------------------------------------------------------- /ssg/astro/.nvmrc: -------------------------------------------------------------------------------- 1 | v14 2 | -------------------------------------------------------------------------------- /ssg/astro/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/.stackblitzrc -------------------------------------------------------------------------------- /ssg/astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/README.md -------------------------------------------------------------------------------- /ssg/astro/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/astro.config.mjs -------------------------------------------------------------------------------- /ssg/astro/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/package-lock.json -------------------------------------------------------------------------------- /ssg/astro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/package.json -------------------------------------------------------------------------------- /ssg/astro/public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/public/assets/logo.svg -------------------------------------------------------------------------------- /ssg/astro/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/public/favicon.ico -------------------------------------------------------------------------------- /ssg/astro/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /ssg/astro/public/style/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/public/style/global.css -------------------------------------------------------------------------------- /ssg/astro/public/style/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/public/style/home.css -------------------------------------------------------------------------------- /ssg/astro/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/sandbox.config.json -------------------------------------------------------------------------------- /ssg/astro/src/components/Tour.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/src/components/Tour.astro -------------------------------------------------------------------------------- /ssg/astro/src/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssg/astro/src/layouts/MainLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/src/layouts/MainLayout.astro -------------------------------------------------------------------------------- /ssg/astro/src/pages/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/src/pages/[slug].astro -------------------------------------------------------------------------------- /ssg/astro/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/astro/src/pages/index.astro -------------------------------------------------------------------------------- /ssg/astro/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleResolution": "node" 3 | } 4 | -------------------------------------------------------------------------------- /ssg/eleventy/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/.eleventy.js -------------------------------------------------------------------------------- /ssg/eleventy/.eleventyignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /ssg/eleventy/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | 4 | src/pages/*.md 5 | -------------------------------------------------------------------------------- /ssg/eleventy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/README.md -------------------------------------------------------------------------------- /ssg/eleventy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/package-lock.json -------------------------------------------------------------------------------- /ssg/eleventy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/package.json -------------------------------------------------------------------------------- /ssg/eleventy/src/_includes/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/src/_includes/layout.njk -------------------------------------------------------------------------------- /ssg/eleventy/src/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/eleventy/src/pages/pages.json -------------------------------------------------------------------------------- /ssg/gatsby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/.gitignore -------------------------------------------------------------------------------- /ssg/gatsby/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/.prettierignore -------------------------------------------------------------------------------- /ssg/gatsby/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/.prettierrc -------------------------------------------------------------------------------- /ssg/gatsby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/LICENSE -------------------------------------------------------------------------------- /ssg/gatsby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/README.md -------------------------------------------------------------------------------- /ssg/gatsby/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/gatsby-browser.js -------------------------------------------------------------------------------- /ssg/gatsby/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/gatsby-config.js -------------------------------------------------------------------------------- /ssg/gatsby/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/gatsby-node.js -------------------------------------------------------------------------------- /ssg/gatsby/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/gatsby-ssr.js -------------------------------------------------------------------------------- /ssg/gatsby/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/package-lock.json -------------------------------------------------------------------------------- /ssg/gatsby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/package.json -------------------------------------------------------------------------------- /ssg/gatsby/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/src/components/layout.js -------------------------------------------------------------------------------- /ssg/gatsby/src/templates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/gatsby/src/templates/page.js -------------------------------------------------------------------------------- /ssg/hugo/.gitignore: -------------------------------------------------------------------------------- 1 | content/pages/ 2 | public/ 3 | -------------------------------------------------------------------------------- /ssg/hugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/hugo/README.md -------------------------------------------------------------------------------- /ssg/hugo/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/hugo/archetypes/default.md -------------------------------------------------------------------------------- /ssg/hugo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/hugo/config.toml -------------------------------------------------------------------------------- /ssg/hugo/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/hugo/layouts/_default/single.html -------------------------------------------------------------------------------- /ssg/jekyll/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /ssg/jekyll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/.gitignore -------------------------------------------------------------------------------- /ssg/jekyll/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.6 2 | -------------------------------------------------------------------------------- /ssg/jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/Gemfile -------------------------------------------------------------------------------- /ssg/jekyll/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/Gemfile.lock -------------------------------------------------------------------------------- /ssg/jekyll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/README.md -------------------------------------------------------------------------------- /ssg/jekyll/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/_config.yml -------------------------------------------------------------------------------- /ssg/jekyll/_layouts/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/jekyll/_layouts/layout.html -------------------------------------------------------------------------------- /ssg/microsite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/microsite/.gitignore -------------------------------------------------------------------------------- /ssg/microsite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/microsite/README.md -------------------------------------------------------------------------------- /ssg/microsite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/microsite/package-lock.json -------------------------------------------------------------------------------- /ssg/microsite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/microsite/package.json -------------------------------------------------------------------------------- /ssg/microsite/src/pages/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/microsite/src/pages/[slug].tsx -------------------------------------------------------------------------------- /ssg/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/.gitignore -------------------------------------------------------------------------------- /ssg/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/README.md -------------------------------------------------------------------------------- /ssg/next/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/package-lock.json -------------------------------------------------------------------------------- /ssg/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/package.json -------------------------------------------------------------------------------- /ssg/next/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/pages/_app.js -------------------------------------------------------------------------------- /ssg/next/pages/pages/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/next/pages/pages/[slug].js -------------------------------------------------------------------------------- /ssg/nuxt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/.gitignore -------------------------------------------------------------------------------- /ssg/nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/README.md -------------------------------------------------------------------------------- /ssg/nuxt/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/nuxt.config.js -------------------------------------------------------------------------------- /ssg/nuxt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/package-lock.json -------------------------------------------------------------------------------- /ssg/nuxt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/package.json -------------------------------------------------------------------------------- /ssg/nuxt/pages/blog/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/ssg/nuxt/pages/blog/_slug.vue -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/test.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancdavis/ssg-build-performance-tests/HEAD/webpack.config.js --------------------------------------------------------------------------------