All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s
23 lines
507 B
TypeScript
23 lines
507 B
TypeScript
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 }),
|
|
],
|
|
})
|