Skip to content

armandsalle/vite-typescript-webflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c608407 Β· Jan 3, 2023

History

10 Commits
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 3, 2023
Feb 27, 2022
Feb 27, 2022
Jan 24, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022
Jan 21, 2022

Repository files navigation

ViteJs + TypeScript + Webflow = ❀️

This is a basic setup with ViteJs and Typescript that you can use for your Webflow website. jQuery is already installed and declared as an external dependency.

I'm using Netlify to build and host my code because it's easy to use, free, and has serverless functions out of the box. Feel free to use your favorite CDN.

Live demo

You can find a simple example of a Webflow site using this setup here. The code is hosted on Netlify here. If you want to see the Webflow preview, it's here πŸ‘


How to use with Webflow

πŸ‡«πŸ‡· French

The doc is here

πŸ‡¬πŸ‡§ English

The doc is here


Building and running on localhost

This project is using yarn.

First, install dependencies:

yarn

To launch a local dev server:

yarn dev

To create a production build:

yarn build

To clean the local /dist folder:

yarn clean

To lint the code with ESLint and Prettier:

yarn lint:fix