All checks were successful
PR Checks / lint-test-and-docker-build (pull_request) Successful in 2m27s
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
server: {
|
|
allowedHosts: ['cloud.campbellwireless.net', '127.0.0.1', 'localhost']
|
|
}
|
|
});
|