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
- Host: GitHub
- URL: https://github.com/gsimone/codesandbox-vite
- Owner: gsimone
- Created: 2022-03-27T08:05:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-27T14:21:29.000Z (over 4 years ago)
- Last Synced: 2025-10-10T12:59:16.150Z (9 months ago)
- Language: TypeScript
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()]
})
```