123456789101112131415161718192021222324 |
- import { defineConfig } from 'vite'
- export default defineConfig(({ command, mode, isSsrBuild, isPreview }) => {
- return {
- root: './',
- publicDir: './assets/',
- base: './',
- server:
- {
- host: true, // Open to local network and display URL
- open: !('SANDBOX_URL' in process.env || 'CODESANDBOX_HOST' in process.env) // Open if it's not a CodeSandbox
- },
- build:
- {
- outDir: './dist', // Output in the dist/ folder
- emptyOutDir: true, // Empty the folder first
- sourcemap: true // Add sourcemap
- },
- plugins:
- [
- ]
- }
- })
|