rano/vite.config.js

13 lines
276 B
JavaScript
Raw Permalink Normal View History

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