All checks were successful
Build and Push Docs Image / build (push) Successful in 2m10s
13 lines
337 B
JavaScript
13 lines
337 B
JavaScript
import { defineConfig } from 'vite';
|
|
import { fileURLToPath, URL } from 'node:url';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
export default defineConfig({
|
|
root: fileURLToPath(new URL('.', import.meta.url)),
|
|
base: './',
|
|
plugins: [tailwindcss()],
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: true,
|
|
},
|
|
});
|