An open API service indexing awesome lists of open source software.

https://github.com/gsimone/codesandbox-vite

An empty boilerplate template to start a fresh project
https://github.com/gsimone/codesandbox-vite

Last synced: 9 months ago
JSON representation

An empty boilerplate template to start a fresh project

Awesome Lists containing this project

README

          

## @gsimone/codesandbox-vite-plugin

Merge custom configuration needed for vite when running the process on Codesandbox Projects.

`yarn add -D @gsimone/codesandbox-vite-plugin`

#### Usage

```js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import codesandbox from '@gsimone/codesandbox-vite-plugin'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), codesandbox()]
})
```