rano/vite.config.js

13 lines
276 B
JavaScript
Raw Normal View History

2024-11-01 19:55:30 +05:30
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2024-11-01 23:19:56 +05:30
plugins: [sveltekit()],
2024-11-01 19:55:30 +05:30
server: {
port: parseInt(process.env.WEB_PORT ?? '3001'),
fs: {
allow: ['./web/assets', './web/app.css', './graph']
2024-11-01 19:55:30 +05:30
}
}
});