feat: linting
This commit is contained in:
@ -1,23 +1,20 @@
|
||||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { defineConfig } from 'vite';
|
||||
import tailwindcss from '@tailwindcss/vite'
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
tailwindcss(),
|
||||
sveltekit()
|
||||
],
|
||||
plugins: [tailwindcss(), sveltekit()],
|
||||
server: {
|
||||
proxy: {
|
||||
'/grpc': {
|
||||
target: 'http://localhost:8080',
|
||||
changeOrigin: true,
|
||||
changeOrigin: true
|
||||
},
|
||||
'/file': {
|
||||
target: 'http://localhost:8080',
|
||||
changeOrigin: true,
|
||||
},
|
||||
changeOrigin: true
|
||||
}
|
||||
},
|
||||
host: '0.0.0.0',
|
||||
host: '0.0.0.0'
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user