29 lines
580 B
JavaScript
29 lines
580 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
],
|
|
optimizeDeps: {
|
|
include: ['three'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
three: 'three'
|
|
}
|
|
},
|
|
server: {
|
|
https: {
|
|
key: fs.readFileSync(path.resolve(__dirname, 'localhost-key.pem')),
|
|
cert: fs.readFileSync(path.resolve(__dirname, 'localhost.pem')),
|
|
},
|
|
port: 5173
|
|
}
|
|
})
|