Skip to content
Snippets Groups Projects
Commit 1968f920 authored by Bauer Lucca's avatar Bauer Lucca
Browse files

vite configs

parent 2910849a
No related branches found
No related tags found
1 merge request!7Dev in Main Merge
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig(() => {
return {
build: {
outDir: 'build',
},
plugins: [react()],
};
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment