add initial project files and setup for Vue with Tailwind CSS and authentication
This commit is contained in:
parent
2f1ceec405
commit
fd65043a0e
29 changed files with 2682 additions and 0 deletions
26
vite.config.ts
Normal file
26
vite.config.ts
Normal file
|
@ -0,0 +1,26 @@
|
|||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import tailwindcss from "@tailwindcss/vite"
|
||||
import path from 'path'
|
||||
import { resolve } from 'path'
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
rollupOptions: {
|
||||
input: {
|
||||
'main': resolve(__dirname, './index.html'),
|
||||
'callback': resolve(__dirname, './callback.html'),
|
||||
'silent-renew': resolve(__dirname, './silent-renew.html'),
|
||||
},
|
||||
}
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, './src')
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
vue(),
|
||||
tailwindcss(),
|
||||
],
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue