Files
IfcOpenShell/src/ifctester/webapp/vite.config.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
378 B
JavaScript
Raw Normal View History

2025-08-29 17:45:30 +05:30
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import path from "node:path";
2025-08-29 17:45:30 +05:30
export default defineConfig({
plugins: [tailwindcss(), svelte()],
resolve: {
alias: {
$lib: path.resolve("./src/lib"),
$src: path.resolve("./src"),
},
},
});