You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe vite-plugin-docker and how it integrates with Vite.js.
Installation
npm install --save-dev vite-plugin-docker
Usage
// Add vite-plugin-docker to the Vite.js configurationimportpluginDockerfrom"vite-plugin-docker";exportdefault{plugins: [pluginDocker(/* ...configurations */)],};
Configuration
Document the configuration options and examples.
vite-plugin-docker-compose
Describe vite-plugin-docker-compose and how it integrates with Vite.js.
Installation
npm install --save-dev vite-plugin-docker-compose
Usage
// Add vite-plugin-docker-compose to the Vite.js configurationimportpluginDockerComposefrom"vite-plugin-docker-compose";exportdefault{plugins: [pluginDockerCompose(/* ...configurations */)],};
Configuration
Document the configuration options and examples.
vite-plugin-docker-deploy
Describe vite-plugin-docker-deploy and how it integrates with Vite.js.
Installation
npm install --save-dev vite-plugin-docker-deploy
Usage
// Add vite-plugin-docker-deploy to the Vite.js configurationimportpluginDockerDeployfrom"vite-plugin-docker-deploy";exportdefault{plugins: [pluginDockerDeploy(/* ...configurations */)],};
Configuration
Document the configuration options and examples.
Example Project
Explain the purpose of the example project and how it demonstrates the use of the plugins.
Installation
cd example
npm install
Run
npm run dev
Explore the example project to understand the practical usage of the plugins.