Initial Commit
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s
This commit is contained in:
22
vite.config.ts
Normal file
22
vite.config.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import { devtools } from '@tanstack/devtools-vite'
|
||||
import tailwindcss from '@tailwindcss/vite'
|
||||
|
||||
import { tanstackStart } from '@tanstack/solid-start/plugin/vite'
|
||||
|
||||
import solidPlugin from 'vite-plugin-solid'
|
||||
import { nitro } from 'nitro/vite'
|
||||
|
||||
export default defineConfig({
|
||||
server: {
|
||||
host: '127.0.0.1',
|
||||
},
|
||||
resolve: { tsconfigPaths: true },
|
||||
plugins: [
|
||||
devtools(),
|
||||
nitro(),
|
||||
tailwindcss(),
|
||||
tanstackStart(),
|
||||
solidPlugin({ ssr: true }),
|
||||
],
|
||||
})
|
||||
Reference in New Issue
Block a user