@winglibs/vite
v0.2.5
Published
Wing resource that allows deploying a Vite application to the cloud
Downloads
14,314
Readme
vite
@winglibs/vite
allows using a Vite project with Wing.
Prerequisites
Installation
npm i @winglibs/vite
Usage
bring cloud;
bring vite;
let api = new cloud.Api();
let website = new vite.Vite(
// The path to the website root.
root: "../website",
// Environment variables passed to the Vite project.
// They'll available through the global `wing` object.
publicEnv: {
API_URL: api.url,
},
);
// Get the URL of the website.
let url = website.url;
License
This library is licensed under the MIT License.