├── .gitignore ├── .npmrc ├── .nvmrc ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── cypress.config.ts ├── cypress └── e2e │ └── basic.cy.ts ├── netlify.toml ├── package.json ├── public └── favicon.ico ├── renovate.json ├── src ├── components │ ├── Background.astro │ └── Layout.astro ├── env.d.ts ├── pages │ └── index.astro └── style │ └── demo-styling.css └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/basic.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/cypress/e2e/basic.cy.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/renovate.json -------------------------------------------------------------------------------- /src/components/Background.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/src/components/Background.astro -------------------------------------------------------------------------------- /src/components/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/src/components/Layout.astro -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/style/demo-styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/src/style/demo-styling.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/astro-quickstart/HEAD/tsconfig.json --------------------------------------------------------------------------------